From 9e9ada4e2b8f3befd03708a109fc85ee75aed72c Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Sun, 4 Aug 2024 22:36:36 +0200 Subject: [PATCH] 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. --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5617c3c..6b8dc59 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ apply() 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 } } \ No newline at end of file