Update Java version and Galaxy-API dependency

Upgraded the project to use Java 21 instead of Java 17 in the toolchain configuration. Also updated the Galaxy-API dependency to version 1.21-R0.1-SNAPSHOT.
This commit is contained in:
Teriuihi 2024-08-04 22:36:36 +02:00
parent 50f66b93c3
commit 9e9ada4e2b

View File

@ -12,7 +12,7 @@ apply<JavaLibraryPlugin>()
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
languageVersion.set(JavaLanguageVersion.of(21))
}
}
@ -43,7 +43,7 @@ tasks {
}
dependencies {
compileOnly("com.alttd:Galaxy-API:1.20.4-R0.1-SNAPSHOT") {
compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT") {
isChanging = true
}
}