NoIssue: Upgrade build to Java 25

This commit is contained in:
2026-02-07 10:30:10 +01:00
parent b248d5bff6
commit 3b6c754b12
2 changed files with 4 additions and 4 deletions

View File

@@ -34,11 +34,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)
}
publishing {