aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAaron <51387595+AzureAaron@users.noreply.github.com>2023-07-22 15:17:11 -0400
committerGitHub <noreply@github.com>2023-07-22 15:17:11 -0400
commit1aa006198fe987dae999486c6668f4f6e071ddf4 (patch)
treec850f150efdda3b940d74f60695cbcc880b143ce /build.gradle
parentbac0f8f4aff96c5c6707bbb750f37de92e000da4 (diff)
parent14ec65e7639758972f44a9097c44b8eb53c45c15 (diff)
downloadSkyblocker-1aa006198fe987dae999486c6668f4f6e071ddf4.tar.gz
Skyblocker-1aa006198fe987dae999486c6668f4f6e071ddf4.tar.bz2
Skyblocker-1aa006198fe987dae999486c6668f4f6e071ddf4.zip
Merge branch 'SkyblockerMod:master' into dark-auction-tabhud
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}")
}