diff options
| -rw-r--r-- | build.gradle.kts | 4 |
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") |
