aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 6d30805..636a583 100644
--- a/build.gradle
+++ b/build.gradle
@@ -16,6 +16,8 @@ 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 { url "https://maven.terraformersmc.com" }
+ maven { url 'https://maven.nucleoid.xyz' }
}
dependencies {
@@ -27,11 +29,15 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
+ modImplementation include("eu.pb4:sgui:1.1.5+1.19.1")
+ modImplementation include('eu.pb4:polymer:0.2.16+1.19.2')
+ modImplementation include('fr.catcore:server-translations-api:1.4.17+1.19.2')
+
// 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.
// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
-}
+ modApi("com.terraformersmc:modmenu:${"4.+"}")}
processResources {
inputs.property "version", project.version