diff options
author | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-07-08 22:33:56 -0400 |
---|---|---|
committer | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-07-10 03:02:16 -0400 |
commit | 42703f02c9736a1565a0aa00007b04db9bc0baa7 (patch) | |
tree | 290f213b8feaa4f0fe7230c79118662b8e127c93 /build.gradle | |
parent | 94abbb2b9d23238cd629d065aaf68fadf7fd7796 (diff) | |
download | Skyblocker-42703f02c9736a1565a0aa00007b04db9bc0baa7.tar.gz Skyblocker-42703f02c9736a1565a0aa00007b04db9bc0baa7.tar.bz2 Skyblocker-42703f02c9736a1565a0aa00007b04db9bc0baa7.zip |
Bing bong locraw gone!
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 14 |
1 files changed, 14 insertions, 0 deletions
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}" |