Skip to content

Commit b7fceb6

Browse files
committed
upgrade everything including gradle
1 parent e07843d commit b7fceb6

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

conventions/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pluginManagement {
66
}
77

88
plugins {
9-
id("dev.panuszewski.typesafe-conventions") version "0.8.0"
9+
id("dev.panuszewski.typesafe-conventions") version "0.10.0"
1010
}
1111

1212
dependencyResolutionManagement {

conventions/src/main/kotlin/tel.schich.javacan.convention.arch-detect.gradle.kts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ val nativeLibs by configurations.registering
66

77
tasks.jar.configure {
88
dependsOn(nativeLibs)
9-
for (jar in nativeLibs.get().resolvedConfiguration.resolvedArtifacts) {
10-
val classifier = jar.classifier ?: continue
11-
from(zipTree(jar.file)) {
12-
include("native/*.so")
13-
into(classifier)
9+
nativeLibs {
10+
for (jar in resolvedConfiguration.resolvedArtifacts) {
11+
val classifier = jar.classifier ?: continue
12+
from(zipTree(jar.file)) {
13+
include("native/*.so")
14+
into(classifier)
15+
}
1416
}
1517
}
1618
}

gradle/wrapper/gradle-wrapper.jar

1.83 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)