summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 6 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle
index bfb17ed..a7d337f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -11,11 +11,9 @@ version = project.mod_version + "-mc" + project.minecraft_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://masa.dy.fi/maven'
+ }
}
dependencies {
@@ -27,6 +25,9 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
+ // Carpet
+ modImplementation "carpet:fabric-carpet:${project.minecraft_version}-${project.carpet_core_version}"
+
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
}