diff options
author | NotNite <hi@notnite.com> | 2024-02-15 22:09:15 -0500 |
---|---|---|
committer | NotNite <hi@notnite.com> | 2024-02-15 22:09:15 -0500 |
commit | 40c0e869ad1edd5524b409d50d8733003c4d0c31 (patch) | |
tree | 74af1fded8b56fad2a6243af12d2d676732b1002 /build.gradle | |
parent | 4cbe83614ad0d035c1d0ce11385335cec63a0ed8 (diff) | |
download | gloppers-40c0e869ad1edd5524b409d50d8733003c4d0c31.tar.gz gloppers-40c0e869ad1edd5524b409d50d8733003c4d0c31.tar.bz2 gloppers-40c0e869ad1edd5524b409d50d8733003c4d0c31.zip |
1.0.2
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/build.gradle b/build.gradle index 6d1f37a..7445bac 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,5 @@ plugins { id "fabric-loom" version "1.2-SNAPSHOT" - id "org.jetbrains.kotlin.jvm" version "1.8.22" id "com.modrinth.minotaur" version "2.+" } @@ -19,12 +18,6 @@ dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" - - modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" - modImplementation "net.fabricmc:fabric-language-kotlin:${project.fabric_kotlin_version}" - - implementation "com.github.LlamaLad7:MixinExtras:${project.mixinextras_version}" - annotationProcessor "com.github.LlamaLad7:MixinExtras:${project.mixinextras_version}" } processResources { @@ -39,12 +32,6 @@ tasks.withType(JavaCompile).configureEach { it.options.release = 17 } -tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { - kotlinOptions { - jvmTarget = 17 - } -} - java { withSourcesJar() @@ -64,10 +51,6 @@ modrinth { projectId = "gloppers" versionType = "release" uploadFile = remapJar - gameVersions = ["1.20", "1.20.1"] + gameVersions = ["1.20.4"] loaders = ["fabric", "quilt"] - dependencies { - required.project "fabric-api" - required.project "fabric-language-kotlin" - } } |