diff options
-rw-r--r-- | build.gradle | 14 | ||||
-rw-r--r-- | gradle.properties | 4 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 2 |
3 files changed, 6 insertions, 14 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 diff --git a/gradle.properties b/gradle.properties index 9ece889f..e97585c9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,8 +14,8 @@ fabric_api_version=0.100.1+1.21 # Minecraft Mods ## YACL (https://github.com/isXander/YetAnotherConfigLib) yacl_version=3.5.0+1.21 -## HM API -hm_api_version=1.0.0-alpha.11+1.21 +## HM API (https://github.com/AzureAaron/hm-api) +hm_api_version=1.0.0+1.21 ## Mod Menu (https://modrinth.com/mod/modmenu/versions) mod_menu_version = 11.0.0-beta.1 ## REI (https://modrinth.com/mod/rei/versions?l=fabric) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 93e2bd6a..1361c00a 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -36,7 +36,7 @@ "fabricloader": ">=0.15.11", "fabric-api": ">=0.100.1+1.21", "yet_another_config_lib_v3": ">=3.5.0+1.21", - "hm-api": ">=1.0.0-alpha.10+1.21", + "hm-api": ">=1.0.0+1.21", "minecraft": "~1.21", "java": ">=21" }, |