aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorTacoMonkey <75862693+TacoMonkey11@users.noreply.github.com>2022-01-27 14:42:04 -0500
committerTacoMonkey <75862693+TacoMonkey11@users.noreply.github.com>2022-01-27 14:42:04 -0500
commit9a7ff8402cab3367a3bb39a203cffdd3fb912ba1 (patch)
tree6800ed02f13ca5adbafd474f30c9dc51d23dc143 /build.gradle
parent11b4fa0174904bf31f6ddb38ac161a3a91916da5 (diff)
downloadSkyblocker-9a7ff8402cab3367a3bb39a203cffdd3fb912ba1.tar.gz
Skyblocker-9a7ff8402cab3367a3bb39a203cffdd3fb912ba1.tar.bz2
Skyblocker-9a7ff8402cab3367a3bb39a203cffdd3fb912ba1.zip
Rewrote the presence to actually work
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 7 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 16fe78a9..74e9e7a5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -30,6 +30,7 @@ repositories {
name 'Maven Central'
}
maven {url "https://jitpack.io"}
+ maven {url "https://maven.jaackson.me/repo"}
}
@@ -55,12 +56,14 @@ 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.
+ 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 {