diff options
author | Joffrey Bion <joffrey.bion@gmail.com> | 2023-05-01 10:06:05 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@gmail.com> | 2023-05-01 10:06:05 +0200 |
commit | 8e2bd6298cd61e340ae056267f4d0a5af392a7dd (patch) | |
tree | 510eea44a5bb55553bb615325c2ebfb3648bf7fd /sw-client/build.gradle.kts | |
parent | Use existing Gradle updater action instead of custom workflow (diff) | |
download | seven-wonders-8e2bd6298cd61e340ae056267f4d0a5af392a7dd.tar.gz seven-wonders-8e2bd6298cd61e340ae056267f4d0a5af392a7dd.tar.bz2 seven-wonders-8e2bd6298cd61e340ae056267f4d0a5af392a7dd.zip |
Use DSL sugar to access commonMain source set and avoid warnings
Diffstat (limited to 'sw-client/build.gradle.kts')
-rw-r--r-- | sw-client/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 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) |