aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle15
1 files changed, 8 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle
index c309de8..a611ca3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -7,11 +7,8 @@ version = project.mod_version
group = project.maven_group
repositories {
- // Add repositories to retrieve artifacts from in here.
- // You should only use this when depending on other mods because
- // Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
- // See https://docs.gradle.org/current/userguide/declaring_repositories.html
- // for more information about repositories.
+ maven { url "https://maven.shedaniel.me/" }
+ maven { url "https://maven.terraformersmc.com/releases" }
}
dependencies {
@@ -20,9 +17,13 @@ dependencies {
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
+ modApi("com.terraformersmc:modmenu:2.0.6") {
+ exclude(group: "net.fabricmc.fabric-api")
+ }
- // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
- // You may need to force-disable transitiveness on them.
+ modApi("me.shedaniel.cloth:cloth-config-fabric:5.0.38") {
+ exclude(group: "net.fabricmc.fabric-api")
+ }
}
processResources {