9
0
mirror of https://github.com/BX-Team/DivineMC.git synced 2025-12-19 14:59:25 +00:00

rollback to java 21, move native math to other branch

This commit is contained in:
NONPLAYT
2025-03-23 02:40:37 +03:00
parent 35f1a407cb
commit f4e79b8427
28 changed files with 330 additions and 3125 deletions

View File

@@ -43,7 +43,7 @@ allprojects {
java {
toolchain {
languageVersion = JavaLanguageVersion.of(22)
languageVersion = JavaLanguageVersion.of(21)
}
}
@@ -64,13 +64,13 @@ subprojects {
extensions.configure<JavaPluginExtension> {
toolchain {
languageVersion = JavaLanguageVersion.of(22)
languageVersion = JavaLanguageVersion.of(21)
}
}
tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
options.release = 22
options.release = 21
options.isFork = true
}
tasks.withType<Javadoc> {