summaryrefslogtreecommitdiff
path: root/sw-common-model/build.gradle.kts
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2021-09-08 09:41:50 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2021-09-08 09:41:50 +0200
commitdce7803ad428a89da27f27cf58483a9fb64bab46 (patch)
tree7873e130c90432cadf994e624cee8189349342d9 /sw-common-model/build.gradle.kts
parentOptIn GlobalScope usages in JS tests (diff)
downloadseven-wonders-dce7803ad428a89da27f27cf58483a9fb64bab46.tar.gz
seven-wonders-dce7803ad428a89da27f27cf58483a9fb64bab46.tar.bz2
seven-wonders-dce7803ad428a89da27f27cf58483a9fb64bab46.zip
Remove unnecessary module-level opt-ins
The declaration at the root does work for multiplatform projects
Diffstat (limited to 'sw-common-model/build.gradle.kts')
-rw-r--r--sw-common-model/build.gradle.kts4
1 files changed, 0 insertions, 4 deletions
diff --git a/sw-common-model/build.gradle.kts b/sw-common-model/build.gradle.kts
index 3a550f25..955d0da5 100644
--- a/sw-common-model/build.gradle.kts
+++ b/sw-common-model/build.gradle.kts
@@ -9,10 +9,6 @@ kotlin {
browser() // necessary for local dependency from JS UI module
}
sourceSets {
- all {
- languageSettings.optIn("kotlin.RequiresOptIn")
- languageSettings.optIn("kotlin.time.ExperimentalTime")
- }
val commonMain by getting {
dependencies {
api(libs.kotlinx.serialization.core)
bgstack15