Skip to content

Commit 949cbf2

Browse files
committed
upgrade Gradle to 9.1.0 for Java 25 support, but Mockk/ByteBuddy doesn't support it yet
1 parent e2d910c commit 949cbf2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

sample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ tasks.jar {
3131
manifest {
3232
attributes(
3333
"Main-Class" to mainClassName,
34-
"Class-Path" to File("$buildDir/libs/deps").listFiles()?.joinToString(" ") { "deps/${it.name}"}
34+
"Class-Path" to File("$buildDir/libs/deps").listFiles()!!.joinToString(" ") { "deps/${it.name}" }
3535
)
3636
}
3737
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencyResolutionManagement {
1717
library("junit-engine", "org.junit.jupiter", "junit-jupiter-engine").versionRef(junit5)
1818
library("junit-launcher", "org.junit.platform:junit-platform-launcher:1.13.4")
1919
library("atrium", "ch.tutteli.atrium:atrium-fluent:1.3.0-alpha-2")
20-
library("mockk", "io.mockk:mockk:1.14.5")
20+
library("mockk", "io.mockk:mockk:1.14.6")
2121

2222
val slf4j = version("slf4j", "2.0.17")
2323
library("slf4j-api", "org.slf4j", "slf4j-api").versionRef(slf4j)

0 commit comments

Comments
 (0)