Skip to content

Commit 0856b2e

Browse files
committed
build: remove unnecessary dependencies
1 parent ee4e657 commit 0856b2e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@ repositories {
1616
dependencies {
1717
val coroutines = "1.8.1"
1818
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines")
19-
api("org.jetbrains.kotlinx:kotlinx-coroutines-debug:$coroutines")
20-
api("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutines")
21-
api("org.jetbrains.kotlinx:kotlinx-coroutines-reactive:$coroutines")
2219

2320
val kotest = "5.9.1"
2421
testImplementation("io.kotest:kotest-runner-junit5-jvm:$kotest")
2522
testImplementation("io.kotest:kotest-assertions-core-jvm:$kotest")
2623
testImplementation("io.kotest:kotest-property-jvm:$kotest")
24+
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-debug:$coroutines")
2725
}
2826

2927
tasks.test {

0 commit comments

Comments
 (0)