Skip to content

Commit

Permalink
Release version 1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Mar 8, 2021
1 parent 5889ebd commit df7436b
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

### March 8, 2021 version 1.5.5
* Add `javacppPlatformExtension` property to `BuildPlugin` and map it to `platform.extension` property
* Add instructions to integrate `BuildTask` with Android Studio ([issue #5](https://github.com/bytedeco/gradle-javacpp/issues/5))
* Fix `PlatformPlugin` evaluating `javacppPlatform` too early ([issue #8](https://github.com/bytedeco/gradle-javacpp/issues/8))
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.5-SNAPSHOT'
version = '1.5.5'

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.4")
id("org.bytedeco.gradle-javacpp-platform").version("1.5.5")
}

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

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

tasks {
Expand Down
9 changes: 5 additions & 4 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.4'
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.5'
}

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

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

dependencies {
api "org.bytedeco:javacv-platform:$version"
// api "org.bytedeco:opencv-platform-gpu:4.4.0-$version"
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"
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.4' }
gradle.rootProject { ext.javacppVersion = '1.5.5' }
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-SNAPSHOT'
id 'org.bytedeco.gradle-javacpp-build' version '1.5.5'
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-SNAPSHOT' }
gradle.rootProject { ext.javacppVersion = '1.5.5' }

0 comments on commit df7436b

Please sign in to comment.