diff options
author | Yasin <LifeIsAParadox@users.noreply.github.com> | 2022-01-28 01:59:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 01:59:23 +0100 |
commit | a3b5cad38376be3da5674480ec60f4610b321671 (patch) | |
tree | 1f7ede2101c7f4d620beed27295c101cb0b30906 /build.gradle | |
parent | bce4959edc1766958e7e8a92827ac101a3dcae73 (diff) | |
parent | a7e240c3e33df6c1f57018de526b60dbf0561347 (diff) | |
download | Skyblocker-a3b5cad38376be3da5674480ec60f4610b321671.tar.gz Skyblocker-a3b5cad38376be3da5674480ec60f4610b321671.tar.bz2 Skyblocker-a3b5cad38376be3da5674480ec60f4610b321671.zip |
Merge pull request #31 from TacoMonkey11/master
Added Discord Rich Presence with a few other small fixes
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index bc703890..d38f2223 100644 --- a/build.gradle +++ b/build.gradle @@ -29,6 +29,8 @@ repositories { url 'https://repo.maven.apache.org/maven2' name 'Maven Central' } + maven {url "https://jitpack.io"} + maven {url "https://maven.jaackson.me/repo"} } @@ -62,6 +64,12 @@ dependencies { // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs. // You may need to force-disable transitiveness on them. + modImplementation ("com.jagrosh:DiscordIPC:0.5"){ + exclude module: "slf4j-api" + } + include "com.jagrosh:DiscordIPC:0.5" + include(modImplementation("com.kohlschutter.junixsocket:junixsocket-common:2.0.4")) + include(modImplementation("com.kohlschutter.junixsocket:junixsocket-native-common:2.0.4")) } processResources { |