diff --git a/build.gradle b/build.gradle index 3c657ba4f..dc181f29a 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.5-SNAPSHOT' + id 'fabric-loom' version '1.6-SNAPSHOT' id 'maven-publish' } @@ -162,7 +162,7 @@ jar { // configure the maven publication publishing { publications { - mavenJava(MavenPublication) { + create("mavenJava", MavenPublication) { from components.java } } diff --git a/gradle.properties b/gradle.properties index 67e4c4491..1e10c6004 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,22 +1,23 @@ # Done to increase the memory available to gradle. -org.gradle.jvmargs=-Xmx1G +org.gradle.jvmargs=-Xmx4G +org.gradle.parallel=true # Fabric Properties minecraft_version=1.20.2 yarn_mappings=1.20.2+build.4 - loader_version=0.15.3 + loader_version=0.15.10 # Mod Properties - mod_version = 2.11.10 + mod_version = 2.11.11 maven_group = com.github.apace100 archives_base_name = Apoli-1.20.2 # 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.91.2+1.20.2 + fabric_version=0.91.6+1.20.2 cca_version=5.3.0 pal_version=1.9.0 - calio_version=1.13.2 + calio_version=1.13.3 clothconfig_version=12.0.109 modmenu_version=8.0.0 aea_version=1.5.0+1.20.2 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 7cf08140d..b82aa23a4 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists \ No newline at end of file +zipStorePath=wrapper/dists diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 721f0f4f7..58e38f93d 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -56,9 +56,9 @@ "depends": { "java": ">=17", - "fabricloader": ">=0.15.3", - "fabric-api": ">=0.91.2", - "minecraft": "~1.20.2", - "calio": ">=1.12.0" + "fabricloader": ">=0.15.10", + "fabric-api": ">=0.91.6", + "minecraft": "1.20.2", + "calio": ">=1.13.3" } }