diff options
author | Brady <thatgravyboat@gmail.com> | 2024-04-28 08:01:29 -0230 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 12:31:29 +0200 |
commit | bdf81bc1386f5cd7d4b0bb14c571123744e78b41 (patch) | |
tree | c77707bd82e28e9661c22ce8631a89dd410bd29c | |
parent | 49936719d21b5daf4ee0b25d62a2a3b3b1ebf6e6 (diff) | |
download | skyhanni-bdf81bc1386f5cd7d4b0bb14c571123744e78b41.tar.gz skyhanni-bdf81bc1386f5cd7d4b0bb14c571123744e78b41.tar.bz2 skyhanni-bdf81bc1386f5cd7d4b0bb14c571123744e78b41.zip |
Fix: Relocate ipc & exclude gson from libautoupdate (#1573)
-rw-r--r-- | build.gradle.kts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 9370532d2..c1e2b7f98 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -114,7 +114,9 @@ dependencies { } shadowModImpl(libs.moulconfig) - shadowImpl(libs.libautoupdate) + shadowImpl(libs.libautoupdate) { + exclude(module = "gson") + } shadowImpl("org.jetbrains.kotlin:kotlin-reflect:1.9.0") implementation(libs.hotswapagentforge) @@ -247,6 +249,7 @@ tasks.shadowJar { mergeServiceFiles() relocate("io.github.notenoughupdates.moulconfig", "at.hannibal2.skyhanni.deps.moulconfig") relocate("moe.nea.libautoupdate", "at.hannibal2.skyhanni.deps.libautoupdate") + relocate("com.jagrosh.discordipc", "at.hannibal2.skyhanni.deps.discordipc") } tasks.jar { archiveClassifier.set("nodeps") |