From 0935c49b8432f80350b4dd6c5a4d29e7626ccff7 Mon Sep 17 00:00:00 2001 From: SHsuperCM Date: Fri, 10 Jun 2022 08:57:05 +0300 Subject: Updated target version to 1.19 Using combined input from PRs #152 and #155 Thank you so much for your help @HarvelsX and @MeeniMc Co-Authored-By: MeeniMc <68366846+MeeniMC@users.noreply.github.com> Co-Authored-By: HarvelsX <90945793+harvelsx@users.noreply.github.com> --- build.gradle | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 31a95bc..2417fee 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ import java.nio.file.Files plugins { - id 'fabric-loom' version '0.11-SNAPSHOT' apply false + id 'fabric-loom' version '0.12-SNAPSHOT' apply false id 'io.shcm.shsupercm.fabric.fletchingtable' version '1.4' apply false id 'com.modrinth.minotaur' version '2.+' apply false id 'com.matthewprenger.cursegradle' version '1.4.0' apply false @@ -27,7 +27,7 @@ allprojects { modImplementation fabricApi.module("fabric-api-base", "${project.fabric_api}") modImplementation fabricApi.module("fabric-resource-loader-v0", "${project.fabric_api}") - modImplementation fabricApi.module("fabric-command-api-v1", "${project.fabric_api}") + modImplementation fabricApi.module("fabric-command-api-v2", "${project.fabric_api}") modCompileOnly("com.terraformersmc:modmenu:${project.modmenu}") { exclude(group: "net.fabricmc.fabric-api") @@ -100,7 +100,7 @@ modrinth { versionNumber = version versionName = "v" + version additionalFiles = [ sourcesJar.outputs.getFiles().singleFile ] - gameVersions = ["1.18", "1.18.1", "1.18.2"] + gameVersions = ["1.19"] } curseforge { @@ -114,9 +114,7 @@ curseforge { displayName = "v" + version } addGameVersion 'Fabric' - addGameVersion '1.18' - addGameVersion '1.18.1' - addGameVersion '1.18.2' + addGameVersion '1.19' } options { forgeGradleIntegration = false -- cgit