aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle13
1 files changed, 7 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index b5eaa09f..44d47adc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -41,11 +41,10 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Cloth config
- modImplementation("me.shedaniel.cloth:cloth-config-fabric:${project.clothconfig_version}") {
+ include modImplementation("me.shedaniel.cloth:cloth-config-fabric:${project.clothconfig_version}") {
exclude group: "net.fabricmc.fabric-api"
exclude module: "modmenu"
}
- include "me.shedaniel.cloth:cloth-config-fabric:${project.clothconfig_version}"
// Mod Menu
modImplementation "com.terraformersmc:modmenu:${project.mod_menu_version}"
@@ -58,13 +57,15 @@ dependencies {
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}"
// https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit used pull data from the NEU item repo
- include(implementation("org.eclipse.jgit:org.eclipse.jgit:6.4.0.202211300538-r"))
+ include implementation("org.eclipse.jgit:org.eclipse.jgit:6.4.0.202211300538-r")
// Renderer (https://github.com/0x3C50/Renderer)
- include modImplementation("com.github.0x3C50:Renderer:${project.renderer_version}")
+ include modImplementation("com.github.0x3C50:Renderer:${project.renderer_version}"){
+ exclude group: "io.github.ladysnake" exclude module: "satin"
+ }
+
+ include modImplementation("meteordevelopment:discord-ipc:1.1")
- include(modImplementation ("meteordevelopment:discord-ipc:1.1"))
-
// Occlusion Culling (https://github.com/LogisticsCraft/OcclusionCulling)
include implementation("com.logisticscraft:occlusionculling:${project.occlusionculling_version}")
}