diff options
author | Julian <hi@notnite.com> | 2024-07-24 21:42:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 21:42:11 -0400 |
commit | 9f87ba4eecf3eecd5efe5355f23886c08e07a6d0 (patch) | |
tree | 0be406ac0b2cd2595232ca137348835f7178cb69 /build.gradle | |
parent | 40c0e869ad1edd5524b409d50d8733003c4d0c31 (diff) | |
parent | 66cca351c3a0f49ceaf15b4b5052a619a1f39228 (diff) | |
download | gloppers-main.tar.gz gloppers-main.tar.bz2 gloppers-main.zip |
1.21 Update
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle index 7445bac..5c9a3c3 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id "fabric-loom" version "1.2-SNAPSHOT" + id "fabric-loom" version "1.7-SNAPSHOT" id "com.modrinth.minotaur" version "2.+" } @@ -29,14 +29,14 @@ processResources { } tasks.withType(JavaCompile).configureEach { - it.options.release = 17 + it.options.release = 21 } java { withSourcesJar() - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 + sourceCompatibility = JavaVersion.VERSION_21 + targetCompatibility = JavaVersion.VERSION_21 } jar { @@ -51,6 +51,6 @@ modrinth { projectId = "gloppers" versionType = "release" uploadFile = remapJar - gameVersions = ["1.20.4"] + gameVersions = ["1.21"] loaders = ["fabric", "quilt"] } |