diff options
-rw-r--r-- | sw-client/build.gradle.kts | 2 | ||||
-rw-r--r-- | sw-common-model/build.gradle.kts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts index 3ca5c93e..06a8729e 100644 --- a/sw-client/build.gradle.kts +++ b/sw-client/build.gradle.kts @@ -8,7 +8,7 @@ kotlin { browser() // necessary for local dependency from JS UI module } sourceSets { - val commonMain by getting { + commonMain { dependencies { api(projects.swCommonModel) api(libs.krossbow.stomp.kxserialization.json) diff --git a/sw-common-model/build.gradle.kts b/sw-common-model/build.gradle.kts index 955d0da5..a1556554 100644 --- a/sw-common-model/build.gradle.kts +++ b/sw-common-model/build.gradle.kts @@ -9,12 +9,12 @@ kotlin { browser() // necessary for local dependency from JS UI module } sourceSets { - val commonMain by getting { + commonMain { dependencies { api(libs.kotlinx.serialization.core) } } - val commonTest by getting { + commonTest { dependencies { implementation(kotlin("test")) } |