aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle15
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"))
}