NoIssue: Upgrade build for Java 25

This commit is contained in:
2026-01-26 14:53:45 +01:00
parent 4e9da9c530
commit cb4e1e607b
2 changed files with 4 additions and 4 deletions

View File

@@ -33,11 +33,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 {