From 42703f02c9736a1565a0aa00007b04db9bc0baa7 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Mon, 8 Jul 2024 22:33:56 -0400 Subject: Bing bong locraw gone! --- build.gradle | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index ea70c4ef..b3c46376 100644 --- a/build.gradle +++ b/build.gradle @@ -30,6 +30,17 @@ 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" + } + } } dependencies { @@ -50,6 +61,9 @@ dependencies { // YACL include modImplementation("dev.isxander:yet-another-config-lib:${project.yacl_version}-fabric") + // HM API + include modImplementation("net.azureaaron:hm-api:${project.hm_api_version}") + // Mod Menu modImplementation "com.terraformersmc:modmenu:${project.mod_menu_version}" -- cgit From f2f50f2a956cada6c619f8efd46fc0ed9a830a16 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Thu, 11 Jul 2024 15:46:20 -0400 Subject: 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 --- build.gradle | 14 +++----------- gradle.properties | 4 ++-- src/main/resources/fabric.mod.json | 2 +- 3 files changed, 6 insertions(+), 14 deletions(-) (limited to 'build.gradle') 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" }, -- cgit