From 7058ebc7fb7e166ee66de9db6f50904e06ee5790 Mon Sep 17 00:00:00 2001 From: MartinSVK12 <37455793+MartinSVK12@users.noreply.github.com> Date: Sun, 5 Jan 2025 21:27:54 +0100 Subject: [PATCH] Made gradle download halplibe from somewhere else because jitpack is stupid. --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e3bb56d..5fbeb31 100644 --- a/build.gradle +++ b/build.gradle @@ -24,6 +24,10 @@ repositories { name = 'Fabric' url = 'https://maven.fabricmc.net/' } + maven { + name = 'SignalumMavenReleases' + url "https://maven.thesignalumproject.net/releases" + } ivy { url = "https://github.com/Better-than-Adventure" patternLayout { @@ -83,7 +87,7 @@ dependencies { // Helper library // If you do not need Halplibe you can comment this line out or delete this line - modImplementation "com.github.Turnip-Labs:bta-halplibe:${project.halplibe_version}" + implementation "turniplabs:halplibe:${project.halplibe_version}" modImplementation "ModMenu:ModMenu:${project.mod_menu_version}"