summaryrefslogtreecommitdiff
path: root/sw-common-model/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'sw-common-model/build.gradle')
-rw-r--r--sw-common-model/build.gradle42
1 files changed, 0 insertions, 42 deletions
diff --git a/sw-common-model/build.gradle b/sw-common-model/build.gradle
deleted file mode 100644
index b8bdb97b..00000000
--- a/sw-common-model/build.gradle
+++ /dev/null
@@ -1,42 +0,0 @@
-plugins {
- id 'kotlin-multiplatform'
-}
-
-kotlin {
- jvm()
- js()
- sourceSets {
- commonMain {
- dependencies {
- implementation kotlin('stdlib-common')
- }
- }
- commonTest {
- dependencies {
- implementation kotlin('test-common')
- implementation kotlin('test-annotations-common')
- }
- }
- jvmMain {
- dependencies {
- implementation kotlin('stdlib-jdk8')
- }
- }
- jvmTest {
- dependencies {
- implementation kotlin('test')
- implementation kotlin('test-junit')
- }
- }
- jsMain {
- dependencies {
- implementation kotlin('stdlib-js')
- }
- }
- jsTest {
- dependencies {
- implementation kotlin('test-js')
- }
- }
- }
-}
bgstack15