diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-04-15 18:54:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 18:54:53 +0200 |
commit | 2df3ef3191c5f98aedb15ebe640230d9400b02e0 (patch) | |
tree | 7ad20d25ad559483ce7fe13391dd17e41e2ae8ca | |
parent | 79432868dab02fce68bcd513e01c49bd07271eba (diff) | |
download | skyhanni-2df3ef3191c5f98aedb15ebe640230d9400b02e0.tar.gz skyhanni-2df3ef3191c5f98aedb15ebe640230d9400b02e0.tar.bz2 skyhanni-2df3ef3191c5f98aedb15ebe640230d9400b02e0.zip |
Backend: Adding Hypixel Mod API v0.1.6 (#1426)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
-rw-r--r-- | build.gradle.kts | 3 |
1 files changed, 3 insertions, 0 deletions
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<*>) |