diff options
author | SHsuperCM <shsupercm@gmail.com> | 2022-06-10 08:57:05 +0300 |
---|---|---|
committer | SHsuperCM <shsupercm@gmail.com> | 2022-06-10 08:57:05 +0300 |
commit | 0935c49b8432f80350b4dd6c5a4d29e7626ccff7 (patch) | |
tree | cdea4d92ce25491a64d2cf8c9c43d9fb1c6144b3 /build.gradle | |
parent | ffa0e186440249e1657268d036ec3036974b9fe9 (diff) | |
download | CITResewn-0935c49b8432f80350b4dd6c5a4d29e7626ccff7.tar.gz CITResewn-0935c49b8432f80350b4dd6c5a4d29e7626ccff7.tar.bz2 CITResewn-0935c49b8432f80350b4dd6c5a4d29e7626ccff7.zip |
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>
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 10 |
1 files changed, 4 insertions, 6 deletions
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 |