From 2df3ef3191c5f98aedb15ebe640230d9400b02e0 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Mon, 15 Apr 2024 18:54:53 +0200 Subject: Backend: Adding Hypixel Mod API v0.1.6 (#1426) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 4b047476a..9157a4dbb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -50,6 +50,7 @@ repositories { } maven("https://repo.nea.moe/releases") maven("https://maven.notenoughupdates.org/releases") + maven("https://repo.hypixel.net/repository/Hypixel/") } val shadowImpl: Configuration by configurations.creating { @@ -121,6 +122,8 @@ dependencies { } testImplementation("org.junit.jupiter:junit-jupiter:5.10.0") testImplementation("io.mockk:mockk:1.12.5") + + implementation("net.hypixel:mod-api:0.3.1") } configurations.getByName("minecraftNamed").dependencies.forEach { shot.applyTo(it as HasConfigurableAttributes<*>) -- cgit