From a02ce1b981e1cccffdab0a31fca6bc366b8b4fd7 Mon Sep 17 00:00:00 2001 From: Harald Korneliussen Date: Sun, 21 Feb 2021 20:15:35 +0100 Subject: [PATCH] Made the minecraft version dependency a bit more loose --- build.gradle | 8 ++++---- gradle.properties | 20 +++++++++++++++----- src/main/resources/fabric.mod.json | 2 +- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index 6e15052..a476d63 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,13 @@ plugins { - id 'java' - id 'fabric-loom' version '0.4-SNAPSHOT' + id 'fabric-loom' version '0.5-SNAPSHOT' + id 'maven-publish' } sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 -group = 'org.example' -version = '1.1.1' +group = 'net.heyzeer0' +version = '1.1.2' archivesBaseName = 'ShieldDisruptor' dependencies { diff --git a/gradle.properties b/gradle.properties index be87c93..bc895c8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,16 @@ -org.gradle.jvmargs = -Xmx1G +org.gradle.jvmargs=-Xmx1G -minecraft_version = 1.16.3 -yarn_mappings = 1.16.3+build.7 -loader_version = 0.9.3+build.207 -fabric_version= 0.20.2+build.402-1.16 \ No newline at end of file +# Fabric Properties + # check these on https://fabricmc.net/use + minecraft_version=1.16.5 + yarn_mappings=1.16.5+build.1 + loader_version=0.11.0 + +# Mod Properties + mod_version = 1.1.2 + maven_group = net.heyzeer0 + archives_base_name = shieldisruptor + +# Dependencies + # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api + fabric_version=0.29.3+1.16 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 6443c32..338f46e 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -31,7 +31,7 @@ "depends": { "fabricloader": ">=0.7.4", "fabric": "*", - "minecraft": "1.16.3", + "minecraft": ">=1.16.3", "autoconfig1u": "*", "cloth-config2": "*" },