From 0856b2e0caf2e4c6e619cbc130942a821d343c75 Mon Sep 17 00:00:00 2001 From: Silas Della Contrada Date: Sat, 10 Aug 2024 00:59:32 +0200 Subject: [PATCH] build: remove unnecessary dependencies --- build.gradle.kts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index edd7adf..6ea7899 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,14 +16,12 @@ repositories { dependencies { val coroutines = "1.8.1" api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines") - api("org.jetbrains.kotlinx:kotlinx-coroutines-debug:$coroutines") - api("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutines") - api("org.jetbrains.kotlinx:kotlinx-coroutines-reactive:$coroutines") val kotest = "5.9.1" testImplementation("io.kotest:kotest-runner-junit5-jvm:$kotest") testImplementation("io.kotest:kotest-assertions-core-jvm:$kotest") testImplementation("io.kotest:kotest-property-jvm:$kotest") + testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-debug:$coroutines") } tasks.test {