File tree Expand file tree Collapse file tree 8 files changed +18
-19
lines changed Expand file tree Collapse file tree 8 files changed +18
-19
lines changed Original file line number Diff line number Diff line change 1
1
2
+ ### November 2, 2022 version 1.5.8
2
3
* Remove lambda expressions since Gradle dislikes them ([ issue #23 ] ( https://github.com/bytedeco/gradle-javacpp/issues/23 ) )
3
4
* Update instructions to integrate ` BuildTask ` with Android Studio ([ issue #22 ] ( https://github.com/bytedeco/gradle-javacpp/issues/22 ) )
4
5
Original file line number Diff line number Diff line change @@ -6,7 +6,10 @@ plugins {
6
6
}
7
7
8
8
group = ' org.bytedeco'
9
- version = ' 1.5.8-SNAPSHOT'
9
+ version = ' 1.5.8'
10
+
11
+ sourceCompatibility = 1.7
12
+ targetCompatibility = 1.7
10
13
11
14
repositories {
12
15
mavenLocal()
@@ -19,11 +22,6 @@ dependencies {
19
22
testImplementation ' junit:junit:4.13.2'
20
23
}
21
24
22
- java {
23
- sourceCompatibility = 1.7
24
- targetCompatibility = 1.7
25
- }
26
-
27
25
gradlePlugin {
28
26
// need to sign before publishing
29
27
automatedPublishing = false
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ plugins {
3
3
kotlin(" jvm" ).version(" 1.3.72" )
4
4
// Apply the java-library plugin for API and implementation separation.
5
5
`java- library`
6
- id(" org.bytedeco.gradle-javacpp-platform" ).version(" 1.5.7 " )
6
+ id(" org.bytedeco.gradle-javacpp-platform" ).version(" 1.5.8 " )
7
7
}
8
8
9
9
repositories {
@@ -15,7 +15,7 @@ repositories {
15
15
16
16
dependencies {
17
17
implementation(kotlin(" stdlib-jdk8" ))
18
- implementation(" org.bytedeco:javacv-platform:1.5.7 " )
18
+ implementation(" org.bytedeco:javacv-platform:1.5.8 " )
19
19
}
20
20
21
21
tasks {
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id ' java-library'
3
- id ' org.bytedeco.gradle-javacpp-platform' version ' 1.5.7 '
3
+ id ' org.bytedeco.gradle-javacpp-platform' version ' 1.5.8 '
4
4
}
5
5
6
6
group = ' org.bytedeco'
7
- version = ' 1.5.7 '
7
+ version = ' 1.5.8 '
8
8
9
9
repositories {
10
10
mavenLocal()
@@ -13,9 +13,9 @@ repositories {
13
13
}
14
14
15
15
dependencies {
16
- api " org.bytedeco:javacv-platform:1.5.7 "
17
- // api "org.bytedeco:opencv-platform-gpu:4.5.5 -$version"
18
- // api "org.bytedeco:ffmpeg-platform-gpl:5.0 -$version"
16
+ api " org.bytedeco:javacv-platform:1.5.8 "
17
+ // api "org.bytedeco:opencv-platform-gpu:4.6.0 -$version"
18
+ // api "org.bytedeco:ffmpeg-platform-gpl:5.1.2 -$version"
19
19
testImplementation ' junit:junit:4.13.2'
20
20
}
21
21
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ pluginManagement {
9
9
10
10
rootProject. name = ' javacv-demo'
11
11
12
- gradle. rootProject { ext. javacppVersion = ' 1.5.7 ' }
12
+ gradle. rootProject { ext. javacppVersion = ' 1.5.8 ' }
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id ' java-library'
3
- id ' org.bytedeco.gradle-javacpp-build' version ' 1.5.7 '
3
+ id ' org.bytedeco.gradle-javacpp-build' version ' 1.5.8 '
4
4
id ' maven-publish'
5
5
id ' signing'
6
6
}
7
7
8
8
group = ' org.bytedeco'
9
- version = " 1.2.11 -$javacppVersion "
9
+ version = " 1.2.13 -$javacppVersion "
10
10
11
11
repositories {
12
12
mavenLocal()
Original file line number Diff line number Diff line change 4
4
mkdir -p build/$PLATFORM
5
5
cd build/$PLATFORM
6
6
7
- ZLIB_VERSION=1.2.11
7
+ ZLIB_VERSION=1.2.13
8
8
if [[ ! -e " zlib-$ZLIB_VERSION .tar.gz" ]]; then
9
9
curl -L " http://zlib.net/zlib-$ZLIB_VERSION .tar.gz" -o " zlib-$ZLIB_VERSION .tar.gz"
10
10
fi
11
- echo " c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1 zlib-$ZLIB_VERSION .tar.gz" | shasum -a 256 -c -
11
+ echo " b3a24de97a8fdbc835b9833169501030b8977031bcb54b3b3ac13740f846ab30 zlib-$ZLIB_VERSION .tar.gz" | shasum -a 256 -c -
12
12
13
13
echo " Decompressing archives..."
14
14
tar --totals -xf " zlib-$ZLIB_VERSION .tar.gz"
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ pluginManagement {
9
9
10
10
rootProject. name = ' zlib'
11
11
12
- gradle. rootProject { ext. javacppVersion = ' 1.5.7 ' }
12
+ gradle. rootProject { ext. javacppVersion = ' 1.5.8 ' }
You can’t perform that action at this time.
0 commit comments