diff options
author | Yasin <LifeIsAParadox@users.noreply.github.com> | 2022-01-30 22:56:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-30 22:56:39 +0100 |
commit | ee325989a2936f1449b35fad07a17542bcfd6db7 (patch) | |
tree | c7043910d9aa9a6209a41c4fae53ff23e3cdb23b /build.gradle | |
parent | cdec1e810e86b78cb4fec350e6df49f1128072ff (diff) | |
parent | 888b5f6fd90c29bf72877d4c5c7a038785179cf4 (diff) | |
download | Skyblocker-ee325989a2936f1449b35fad07a17542bcfd6db7.tar.gz Skyblocker-ee325989a2936f1449b35fad07a17542bcfd6db7.tar.bz2 Skyblocker-ee325989a2936f1449b35fad07a17542bcfd6db7.zip |
Merge pull request #34 from TacoMonkey11/master
Added inventory wiki lookup + small bug fixes + DiscordRPC cycle option
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index d38f2223..e7fadae4 100644 --- a/build.gradle +++ b/build.gradle @@ -35,9 +35,9 @@ repositories { } dependencies { - implementation 'com.google.code.gson:gson:2.8.8' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' + implementation 'com.google.code.gson:gson:2.8.9' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2' // To change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" @@ -61,13 +61,16 @@ dependencies { // https://mvnrepository.com/artifact/org.slf4j/slf4j-api include(implementation("org.slf4j:slf4j-api:1.7.28")) - - // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs. - // You may need to force-disable transitiveness on them. + + + //DiscordIPC + Libraries so it works on unix systems modImplementation ("com.jagrosh:DiscordIPC:0.5"){ exclude module: "slf4j-api" } + // https://github.com/jaacksondev/DiscordIPC include "com.jagrosh:DiscordIPC:0.5" + + //https://github.com/kohlschutter/junixsocket include(modImplementation("com.kohlschutter.junixsocket:junixsocket-common:2.0.4")) include(modImplementation("com.kohlschutter.junixsocket:junixsocket-native-common:2.0.4")) } |