aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorTacoMonkey <75862693+TacoMonkey11@users.noreply.github.com>2022-01-25 16:55:40 -0500
committerTacoMonkey <75862693+TacoMonkey11@users.noreply.github.com>2022-01-25 16:55:40 -0500
commitc4ae62f787c9ac3d62dc4ccbf609ea9815d7316e (patch)
tree4b310baa7957f1fcd9cfd3e04804b59122c43799 /build.gradle
parentaae93755805a66d6cd253963307d69978d4d86fc (diff)
parent68845ac4718986e22f47fbd38a43d10116137889 (diff)
downloadSkyblocker-c4ae62f787c9ac3d62dc4ccbf609ea9815d7316e.tar.gz
Skyblocker-c4ae62f787c9ac3d62dc4ccbf609ea9815d7316e.tar.bz2
Skyblocker-c4ae62f787c9ac3d62dc4ccbf609ea9815d7316e.zip
Merge branch '1.18.x'
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index a05703ab..16fe78a9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -29,6 +29,7 @@ repositories {
url 'https://repo.maven.apache.org/maven2'
name 'Maven Central'
}
+ maven {url "https://jitpack.io"}
}
@@ -53,7 +54,11 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
-
+
+ modImplementation("com.github.thatgravyboat:DiscordIPC:d813b27") {
+ exclude module: 'log4j'
+ }
+ include "com.github.thatgravyboat:DiscordIPC:d813b27"
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
}