summaryrefslogtreecommitdiff
path: root/sw-client
diff options
context:
space:
mode:
Diffstat (limited to 'sw-client')
-rw-r--r--sw-client/build.gradle.kts22
1 files changed, 0 insertions, 22 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts
index 0221c24a..801fe295 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -19,27 +19,5 @@ kotlin {
implementation(libs.kotlinx.coroutines.core)
}
}
- val commonTest by getting {
- dependencies {
- implementation(kotlin("test-common"))
- implementation(kotlin("test-annotations-common"))
- }
- }
- val jvmTest by getting {
- dependencies {
- implementation(kotlin("test"))
- implementation(kotlin("test-junit"))
- }
- }
- val jsMain by getting {
- dependencies {
- implementation(npm("text-encoding", "0.7.0")) // required by krossbow, because required by kotlinx-io
- }
- }
- val jsTest by getting {
- dependencies {
- implementation(kotlin("test-js"))
- }
- }
}
}
bgstack15