diff options
author | Joffrey Bion <joffrey.bion@gmail.com> | 2021-09-07 17:53:30 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@gmail.com> | 2021-09-07 17:53:30 +0200 |
commit | 508b395a265bd5326322e20a437d11d19167bb4f (patch) | |
tree | 35da329b1c19a3df73a4e195c69e492c424b9274 /sw-client | |
parent | Cleanup kotlin wrapper dependencies (diff) | |
download | seven-wonders-508b395a265bd5326322e20a437d11d19167bb4f.tar.gz seven-wonders-508b395a265bd5326322e20a437d11d19167bb4f.tar.bz2 seven-wonders-508b395a265bd5326322e20a437d11d19167bb4f.zip |
Cleanup test dependencies thanks to Kotlin 1.5
Diffstat (limited to 'sw-client')
-rw-r--r-- | sw-client/build.gradle.kts | 22 |
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")) - } - } } } |