Skip to content

Commit

Permalink
Release version 1.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Feb 10, 2022
1 parent 036a685 commit 3f343e8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

### February 11, 2022 version 1.5.7
* Update README.md with sample `javacppExtract` task for Android App Bundles (AABs)

### August 2, 2021 version 1.5.6
Expand Down
6 changes: 3 additions & 3 deletions 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.7-SNAPSHOT'
version = '1.5.7'

repositories {
mavenLocal()
Expand All @@ -16,7 +16,7 @@ repositories {

dependencies {
api "org.bytedeco:javacpp:$version"
testImplementation 'junit:junit:4.13.1'
testImplementation 'junit:junit:4.13.2'
}

gradlePlugin {
Expand Down Expand Up @@ -51,7 +51,7 @@ javadoc {
'https://docs.gradle.org/current/javadoc',
'http://bytedeco.org/javacpp/apidocs',
'http://www.slf4j.org/apidocs',
'http://junit.org/junit4/javadoc/4.13.1']
'http://junit.org/junit4/javadoc/4.13.2']
}

//doesn't work with Gradle 5.x
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.6")
id("org.bytedeco.gradle-javacpp-platform").version("1.5.7")
}

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

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

tasks {
Expand Down
12 changes: 6 additions & 6 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.6'
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.7'
}

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

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

dependencies {
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'
api "org.bytedeco:javacv-platform:1.5.7"
// api "org.bytedeco:opencv-platform-gpu:4.5.5-$version"
// api "org.bytedeco:ffmpeg-platform-gpl:5.0-$version"
testImplementation 'junit:junit:4.13.2'
}

// Let's create a standalone "uber JAR" to see what we get in it
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.6' }
gradle.rootProject { ext.javacppVersion = '1.5.7' }
4 changes: 2 additions & 2 deletions 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.6'
id 'org.bytedeco.gradle-javacpp-build' version '1.5.7'
id 'maven-publish'
id 'signing'
}
Expand All @@ -27,7 +27,7 @@ dependencies {
javacppPlatform "org.bytedeco:zlib:$version:windows-x86"
javacppPlatform "org.bytedeco:zlib:$version:windows-x86_64"
testRuntimeOnly "org.bytedeco:javacpp:$javacppVersion:$javacppPlatform"
testImplementation 'junit:junit:4.13.1'
testImplementation 'junit:junit:4.13.2'
}

tasks.withType(org.bytedeco.gradle.javacpp.BuildTask) {
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.6' }
gradle.rootProject { ext.javacppVersion = '1.5.7' }

0 comments on commit 3f343e8

Please sign in to comment.