aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-14 18:52:41 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-14 18:52:41 +0100
commit3ad0a18fec9529c1c8fd027b5ed3baf6ac2b31c8 (patch)
treebf0670fe0593a9d311fa3b4b93a7f13e00e09c6c
parent375ce339ffd66e5aeadace6183b84309d484c954 (diff)
downloadskyhanni-3ad0a18fec9529c1c8fd027b5ed3baf6ac2b31c8.tar.gz
skyhanni-3ad0a18fec9529c1c8fd027b5ed3baf6ac2b31c8.tar.bz2
skyhanni-3ad0a18fec9529c1c8fd027b5ed3baf6ac2b31c8.zip
no more patcher as a requirement
-rw-r--r--build.gradle.kts4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 7a266d53e..9de2ab6fb 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -57,7 +57,9 @@ dependencies {
annotationProcessor("org.spongepowered:mixin:0.8.4-SNAPSHOT")
implementation(kotlin("stdlib-jdk8"))
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
+ shadowImpl("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4") {
+ exclude(group = "org.jetbrains.kotlin")
+ }
// If you don't want to log in with your real minecraft account, remove this line
modRuntimeOnly("me.djtheredstoner:DevAuth-forge-legacy:1.1.0")