diff --git a/scopemob/build.gradle.kts b/scopemob/build.gradle.kts index a8a0a28..6d2151b 100644 --- a/scopemob/build.gradle.kts +++ b/scopemob/build.gradle.kts @@ -9,24 +9,16 @@ plugins { } kotlin { - @Suppress("OPT_IN_USAGE") - targetHierarchy.default() - jvm() iosX64() iosArm64() iosSimulatorArm64() - @Suppress("UNUSED_VARIABLE") - sourceSets { - val commonTest by getting { - dependencies { - libs.common.apply { - implementation(test) - implementation(testAnnotations) - } - } + sourceSets.commonTest.dependencies { + libs.common.apply { + implementation(test) + implementation(testAnnotations) } } }