aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorTacoMonkey <75862693+TacoMonkey11@users.noreply.github.com>2022-01-25 16:31:16 -0500
committerTacoMonkey <75862693+TacoMonkey11@users.noreply.github.com>2022-01-25 16:44:54 -0500
commit7510d292ca8e9e32df8efb6c204f5ece9a00d23a (patch)
tree77be8ab216b2a704128f3c72974e8d2703ecea7a /build.gradle
parentd7e30fadc33f823f7f31d9ee320b6a61a7b188d6 (diff)
downloadSkyblocker-7510d292ca8e9e32df8efb6c204f5ece9a00d23a.tar.gz
Skyblocker-7510d292ca8e9e32df8efb6c204f5ece9a00d23a.tar.bz2
Skyblocker-7510d292ca8e9e32df8efb6c204f5ece9a00d23a.zip
Added rich presence and fishing ding
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.
}