Target Java 17

This commit is contained in:
Kas-tle 2023-12-14 17:47:00 -08:00 committed by Konicai
parent a13492e0ed
commit aaf38f46fb
3 changed files with 2 additions and 8 deletions

View File

@ -5,12 +5,6 @@ plugins {
id("com.modrinth.minotaur") version "2.+" id("com.modrinth.minotaur") version "2.+"
} }
indra {
javaVersions {
target(17)
}
}
dependencies { dependencies {
//to change the versions see the gradle.properties file //to change the versions see the gradle.properties file
minecraft(libs.fabric.minecraft) minecraft(libs.fabric.minecraft)

View File

@ -16,7 +16,7 @@ indra {
mitLicense() mitLicense()
javaVersions { javaVersions {
target(16) target(17)
} }
} }

View File

@ -14,7 +14,7 @@ allprojects {
java { java {
toolchain { toolchain {
languageVersion.set(JavaLanguageVersion.of(16)) languageVersion.set(JavaLanguageVersion.of(17))
} }
} }