aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorSHsuperCM <shsupercm@gmail.com>2021-08-28 18:40:09 +0300
committerSHsuperCM <shsupercm@gmail.com>2021-08-28 18:40:09 +0300
commit89d8435e80c8955d8299fe60d9a2169067f8ac75 (patch)
tree717306cc492fc470f27207c61cc5316b31fb0fb3 /build.gradle
parentda30d30d62caae66255ca6892736df75e12cef6f (diff)
downloadCITResewn-89d8435e80c8955d8299fe60d9a2169067f8ac75.tar.gz
CITResewn-89d8435e80c8955d8299fe60d9a2169067f8ac75.tar.bz2
CITResewn-89d8435e80c8955d8299fe60d9a2169067f8ac75.zip
Added config as well as support for modmenu/cloth
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 {