NoIssue: Upgrade build for Java 25

This commit is contained in:
2026-02-07 16:18:48 +01:00
parent 597b627861
commit 22be4c5463
2 changed files with 4 additions and 4 deletions

View File

@@ -40,11 +40,11 @@ dependencies {
}
java {
toolchain { languageVersion.set(JavaLanguageVersion.of(24)) }
toolchain { languageVersion.set(JavaLanguageVersion.of(25)) }
}
tasks.withType<JavaCompile> {
options.release.set(24)
tasks.withType<JavaCompile>().configureEach {
options.release.set(25)
}
tasks.test {