From 6bc0aad9498025f86505502e757fbcb0f4227d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20D=C3=ADaz=20Vi=C3=B1olas?= Date: Sat, 10 Oct 2020 17:59:06 +0200 Subject: [PATCH] Major cleanup; Bump version to v1.1 --- build.gradle | 23 +------------------ gradle.properties | 8 +++---- .../DisableCustomWorldsAdvice.mixins.json | 4 +--- src/main/resources/fabric.mod.json | 1 - 4 files changed, 6 insertions(+), 30 deletions(-) diff --git a/build.gradle b/build.gradle index 208959f..5d50ec4 100644 --- a/build.gradle +++ b/build.gradle @@ -47,25 +47,4 @@ task sourcesJar(type: Jar, dependsOn: classes) { jar { from "LICENSE" -} - -// configure the maven publication -publishing { - publications { - mavenJava(MavenPublication) { - // add all the jars that should be included when publishing to maven - artifact(remapJar) { - builtBy remapJar - } - artifact(sourcesJar) { - builtBy remapSourcesJar - } - } - } - - // select the repositories you want to publish to - repositories { - // uncomment to publish to the local maven - // mavenLocal() - } -} +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index a77ed2c..d013f36 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,11 +2,11 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://modmuss50.me/fabric.html -minecraft_version=1.16.2 -yarn_mappings=1.16.2+build.6 -loader_version=0.9.1+build.205 +minecraft_version=1.16.3 +yarn_mappings=1.16.3+build.31 +loader_version=0.10.1+build.209 # Mod Properties -mod_version=1.0 +mod_version=1.1 maven_group=com.rdvdev2 archives_base_name=DisableCustomWorldsAdvice diff --git a/src/main/resources/DisableCustomWorldsAdvice.mixins.json b/src/main/resources/DisableCustomWorldsAdvice.mixins.json index 914c8b0..d975b4d 100644 --- a/src/main/resources/DisableCustomWorldsAdvice.mixins.json +++ b/src/main/resources/DisableCustomWorldsAdvice.mixins.json @@ -3,10 +3,8 @@ "minVersion": "0.8", "package": "com.rdvdev2.disablecustomworldsadvice.mixin", "compatibilityLevel": "JAVA_8", - "mixins": [ - "MixinMinecraftClient" - ], "client": [ + "MixinMinecraftClient" ], "injectors": { "defaultRequire": 1 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index cd909cd..1e2a49b 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -16,7 +16,6 @@ "license": "GPL-3.0", "icon": "assets/DisableCustomWorldsAdvice/icon.png", "environment": "client", - "entrypoints": {}, "mixins": [ "DisableCustomWorldsAdvice.mixins.json" ],