From 04d34eea1ed957973ad615f5fac8fffd2549dd79 Mon Sep 17 00:00:00 2001 From: Wagyourtail Date: Mon, 12 May 2025 03:20:51 -0500 Subject: [PATCH] make buildable without local libs --- build.gradle | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index bf5074d..40587e6 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,24 @@ repositories { url = "http://jenkins.usrv.eu:8081/nexus/content/groups/public/" allowInsecureProtocol = true } - flatDir{dirs("lib")} + maven { + url "https://cursemaven.com" + content { + includeGroup "curse.maven" + } + } + ivy { + url "https://archive.org/download/better-with-mods-1.7.10-0.6.2-beta/" + patternLayout { + artifact "BetterWithMods-0.6.2(-[classifier])(.[ext])" + } + content { + includeVersion "betterwithmods", "betterwithmods", "0.6.2-beta" + } + metadataSources { + artifact() + } + } } java.targetCompatibility(JavaVersion.VERSION_1_8) @@ -35,11 +52,11 @@ dependencies { implementation ("codechicken:CodeChickenLib:1.7.10-1.1.3.140:dev") implementation ("codechicken:CodeChickenCore:1.7.10-1.0.7.47:dev") implementation ("codechicken:NotEnoughItems:1.7.10-1.0.5.120:dev") - compileOnly ("lib:Better With Mods 1.7.10 0.6.2 Beta-deobf") - runtimeOnly ("lib:Better With Mods 1.7.10 0.6.2 Beta") - compileOnly("lib:CraftTweaker-1.7.10-3.1.0-legacy-deobf") - runtimeOnly("lib:CraftTweaker-1.7.10-3.1.0-legacy") - compileOnly("lib:SignPicture-1.7.10-2.8.0-universal-deobf") + compileOnly ("betterwithmods:betterwithmods:0.6.2-beta:deobf") + runtimeOnly ("betterwithmods:betterwithmods:0.6.2-beta") + compileOnly (rfg.deobf("curse.maven:crafttweaker-239197:2838720")) + runtimeOnly ("curse.maven:crafttweaker-239197:2838720") + compileOnly (rfg.deobf("curse.maven:signpicture-250822:2450569")) } processResources {