summaryrefslogtreecommitdiff
path: root/sw-common-model
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2021-09-07 17:53:30 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2021-09-07 17:53:30 +0200
commit508b395a265bd5326322e20a437d11d19167bb4f (patch)
tree35da329b1c19a3df73a4e195c69e492c424b9274 /sw-common-model
parentCleanup kotlin wrapper dependencies (diff)
downloadseven-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-common-model')
-rw-r--r--sw-common-model/build.gradle.kts12
1 files changed, 0 insertions, 12 deletions
diff --git a/sw-common-model/build.gradle.kts b/sw-common-model/build.gradle.kts
index 557a6d04..3a550f25 100644
--- a/sw-common-model/build.gradle.kts
+++ b/sw-common-model/build.gradle.kts
@@ -20,19 +20,7 @@ kotlin {
}
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 jsTest by getting {
- dependencies {
- implementation(kotlin("test-js"))
}
}
}
bgstack15