diff options
author | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-07-11 15:46:20 -0400 |
---|---|---|
committer | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-07-11 15:46:20 -0400 |
commit | f2f50f2a956cada6c619f8efd46fc0ed9a830a16 (patch) | |
tree | d1802250883a43627d25ab91c072f3a16b322b9b /build.gradle | |
parent | 3caaa395220adead54394aa7183087bbef4f0d1e (diff) | |
download | Skyblocker-f2f50f2a956cada6c619f8efd46fc0ed9a830a16.tar.gz Skyblocker-f2f50f2a956cada6c619f8efd46fc0ed9a830a16.tar.bz2 Skyblocker-f2f50f2a956cada6c619f8efd46fc0ed9a830a16.zip |
HM API 1.0.0 Release
I went back to the "traditional" repository declaration because Gradle
apparently doesn't allow two repositories in the forRepository thing
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/build.gradle b/build.gradle index b3c46376..56f281fb 100644 --- a/build.gradle +++ b/build.gradle @@ -31,16 +31,8 @@ repositories { maven { url "https://repo.codemc.io/repository/maven-public/" } // For Occlusion Culling library maven { url "https://repo.nea.moe/releases" } // For neu repoparser - exclusiveContent { - forRepository { - maven { url "https://maven.azureaaron.net/releases" } - maven { url "https://maven.azureaaron.net/snapshots" } - } - - filter { - includeGroup "net.azureaaron" - } - } + maven { url "https://maven.azureaaron.net/releases" } + maven { url "https://maven.azureaaron.net/snapshots" } } dependencies { @@ -61,7 +53,7 @@ dependencies { // YACL include modImplementation("dev.isxander:yet-another-config-lib:${project.yacl_version}-fabric") - // HM API + // HM API (Hypixel Mod API Library) include modImplementation("net.azureaaron:hm-api:${project.hm_api_version}") // Mod Menu |