summary refs log tree commit diff stats
path: root/build.gradle
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2022-08-17 21:21:26 -0300
committerSoniEx2 <endermoneymod@gmail.com>2022-08-17 21:24:57 -0300
commit2d0b363fe3179087de59d9ef4a2d14af21d89071 (patch)
treebefdb1f281c3abd82c23d9f6855a3237170e47a5 /build.gradle
parent731e568ad487b8f7dfbedf22eaca9b12cb3e754d (diff)
[Project] ChewStuff
Chew Necklaces for Minecraft!
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle15
1 files changed, 15 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 7a3be5d..c7be481 100644
--- a/build.gradle
+++ b/build.gradle
@@ -16,6 +16,14 @@ repositories {
 	// 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 {
+		name = "TerraformersMC"
+		url = "https://maven.terraformersmc.com/"
+	}
+	maven {
+		name = "Ladysnake Libs"
+		url = "https://ladysnake.jfrog.io/artifactory/mods"
+	}
 }
 
 dependencies {
@@ -27,6 +35,13 @@ dependencies {
 	// Fabric API. This is technically optional, but you probably want it anyway.
 	modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
 
+	// Trinkets
+	modImplementation("dev.emi:trinkets:${project.trinkets_version}") {
+		exclude group: "net.fabricmc"
+		exclude group: "net.fabricmc.fabric-api"
+		exclude group: "com.terraformersmc"
+	}
+
 	// Uncomment the following line to enable the deprecated Fabric API modules. 
 	// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.