Skip to content

Commit

Permalink
Release version 1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Aug 3, 2021
1 parent dbcacfa commit 8825cbe
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

### August 2, 2021 version 1.5.6
* Fix compatibility with Gradle 7.x ([issue #17](https://github.com/bytedeco/gradle-javacpp/issues/17))
* Make `BuildTask` properties `public` to allow access with Kotlin DSL ([pull #16](https://github.com/bytedeco/gradle-javacpp/issues/16))
* Fix `BuildPlugin` incorrectly resetting `javacppBuildParser.outputDirectory` in subprojects ([pull #12](https://github.com/bytedeco/gradle-javacpp/issues/12))
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'org.bytedeco'
version = '1.5.6-SNAPSHOT'
version = '1.5.6'

repositories {
mavenLocal()
Expand Down
4 changes: 2 additions & 2 deletions samples/javacv-demo-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
kotlin("jvm").version("1.3.72")
// Apply the java-library plugin for API and implementation separation.
`java-library`
id("org.bytedeco.gradle-javacpp-platform").version("1.5.5")
id("org.bytedeco.gradle-javacpp-platform").version("1.5.6")
}

repositories {
Expand All @@ -15,7 +15,7 @@ repositories {

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.bytedeco:javacv-platform:1.5.5")
implementation("org.bytedeco:javacv-platform:1.5.6")
}

tasks {
Expand Down
10 changes: 5 additions & 5 deletions samples/javacv-demo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
id 'java-library'
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.5'
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.6'
}

group = 'org.bytedeco'
version = '1.5.5'
version = '1.5.6'

repositories {
mavenLocal()
Expand All @@ -13,9 +13,9 @@ repositories {
}

dependencies {
api "org.bytedeco:javacv-platform:1.5.5"
// api "org.bytedeco:opencv-platform-gpu:4.5.1-$version"
// api "org.bytedeco:ffmpeg-platform-gpl:4.3.2-$version"
api "org.bytedeco:javacv-platform:1.5.6"
// api "org.bytedeco:opencv-platform-gpu:4.5.3-$version"
// api "org.bytedeco:ffmpeg-platform-gpl:4.4-$version"
testImplementation 'junit:junit:4.13.1'
}

Expand Down
2 changes: 1 addition & 1 deletion samples/javacv-demo/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pluginManagement {

rootProject.name = 'javacv-demo'

gradle.rootProject { ext.javacppVersion = '1.5.5' }
gradle.rootProject { ext.javacppVersion = '1.5.6' }
2 changes: 1 addition & 1 deletion samples/zlib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java-library'
id 'org.bytedeco.gradle-javacpp-build' version '1.5.5'
id 'org.bytedeco.gradle-javacpp-build' version '1.5.6'
id 'maven-publish'
id 'signing'
}
Expand Down
2 changes: 1 addition & 1 deletion samples/zlib/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pluginManagement {

rootProject.name = 'zlib'

gradle.rootProject { ext.javacppVersion = '1.5.5' }
gradle.rootProject { ext.javacppVersion = '1.5.6' }

0 comments on commit 8825cbe

Please sign in to comment.