Lower renderer bytecode to Java 24

This commit is contained in:
2026-08-10 23:23:22 +01:00
parent 84a8206a42
commit 98711ea7ce
+2 -2
View File
@@ -23,13 +23,13 @@ dependencies {
java { java {
toolchain { toolchain {
languageVersion = JavaLanguageVersion.of(25) languageVersion = JavaLanguageVersion.of(24)
} }
} }
tasks.withType(JavaCompile).configureEach { tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' options.encoding = 'UTF-8'
options.release = 25 options.release = 24
} }
sourceSets { sourceSets {