Skip to content

Commit 8b5d2e0

Browse files
committed
Update Java toolchain and compile options to version 25
1 parent 0f522ba commit 8b5d2e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ subprojects {
1010
}
1111

1212
extensions.configure<JavaPluginExtension> {
13-
toolchain.languageVersion = JavaLanguageVersion.of(21)
13+
toolchain.languageVersion = JavaLanguageVersion.of(25)
1414
withSourcesJar()
1515
withJavadocJar()
1616
}
1717

1818
tasks.named<JavaCompile>("compileJava") {
19-
options.release.set(21)
19+
options.release.set(25)
2020
}
2121

2222
tasks.named<Test>("test") {

0 commit comments

Comments
 (0)