diff options
author | TacoMonkey <75862693+TacoMonkey11@users.noreply.github.com> | 2022-01-28 13:34:07 -0500 |
---|---|---|
committer | TacoMonkey <75862693+TacoMonkey11@users.noreply.github.com> | 2022-01-28 13:34:07 -0500 |
commit | 14eda84c8bfe8b34fe5134d9f3bc14f4dd6a8c7a (patch) | |
tree | e096112772c5d9a12d0d7dc800b6d0979fbfe8b1 | |
parent | a7e240c3e33df6c1f57018de526b60dbf0561347 (diff) | |
download | Skyblocker-14eda84c8bfe8b34fe5134d9f3bc14f4dd6a8c7a.tar.gz Skyblocker-14eda84c8bfe8b34fe5134d9f3bc14f4dd6a8c7a.tar.bz2 Skyblocker-14eda84c8bfe8b34fe5134d9f3bc14f4dd6a8c7a.zip |
Updated Dependancies
-rw-r--r-- | build.gradle | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index d38f2223..e38c7116 100644 --- a/build.gradle +++ b/build.gradle @@ -29,15 +29,19 @@ repositories { url 'https://repo.maven.apache.org/maven2' name 'Maven Central' } + maven { + url "https://maven.siphalor.de/" + name "Siphalor's Maven" + } maven {url "https://jitpack.io"} maven {url "https://maven.jaackson.me/repo"} } 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 +65,20 @@ 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. + + // https://github.com/Siphalor/amecs-api + modImplementation "de.siphalor:amecsapi-1.15:1+" + include "de.siphalor:amecsapi-1.15:1+" + + + //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")) } |