vanilla-fixes

Minecraft: Better than Adventure! mod that fixes some issues
git clone git://memoryshards.xyz/vanilla-fixes.git
Log | Files | Refs | README | LICENSE

commit 9b14e96e7597d4c5d83930c3f5a1038b121609e2
parent da65724cc13530fdf904d65281164c5c0d1f651e
Author: Amb0s <ambos@disroot.org>
Date:   Thu, 18 Jan 2024 18:44:38 +0100

Updated to BTA 7.1a

Diffstat:
Mbuild.gradle | 15+++++++++++----
Mgradle.properties | 6+++---
2 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/build.gradle b/build.gradle @@ -15,6 +15,7 @@ loom { repositories { mavenCentral() + maven { url = "https://jitpack.io" } maven { name = 'Babric' url = 'https://maven.glass-launcher.net/babric' @@ -42,6 +43,14 @@ repositories { ivy { url = "https://github.com/Turnip-Labs" patternLayout { + artifact "[organisation]/releases/download/[revision]/[module]-[revision].jar" + m2compatible = true + } + metadataSources { artifact() } + } + ivy { + url = "https://github.com/Turnip-Labs" + patternLayout { artifact "[organisation]/releases/download/[revision]/[module]-bta-[revision].jar" m2compatible = true } @@ -72,19 +81,17 @@ dependencies { modRuntimeOnly "objects:client:43db9b498cb67058d2e12d394e6507722e71bb45" // https://piston-data.mojang.com/v1/objects/43db9b498cb67058d2e12d394e6507722e71bb45/client.jar modImplementation "fabric-loader:fabric-loader:${project.loader_version}" - modImplementation "ModMenu:ModMenu:2.0.0" + modImplementation "ModMenu:ModMenu:2.0.3" implementation "org.slf4j:slf4j-api:1.8.0-beta4" implementation "org.apache.logging.log4j:log4j-slf4j18-impl:2.16.0" implementation 'com.google.guava:guava:30.0-jre' - implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9' - + implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1' var log4jVersion = "2.20.0" implementation("org.apache.logging.log4j:log4j-core:${log4jVersion}") implementation("org.apache.logging.log4j:log4j-api:${log4jVersion}") implementation("org.apache.logging.log4j:log4j-1.2-api:${log4jVersion}") - implementation("log4j:apache-log4j-extras:1.2.17") } java { diff --git a/gradle.properties b/gradle.properties @@ -1,12 +1,12 @@ org.gradle.jvmargs=-Xmx2G # BTA -bta_version=1.7.7.0_02 +bta_version=7.1-pre1a # Loader -loader_version=0.14.19-babric.1-bta +loader_version=0.14.19-babric.3-bta # Mod -mod_version=4.2.0 +mod_version=4.3.0 mod_group=turniplabs mod_name=vanilla-fixes