project.version = "$version" project.group = "$group" apply from: "$publishGradlePath" kotlin { jvm { compilations.main { kotlinOptions { jvmTarget = "17" } } } js (IR) { browser() nodejs() } androidTarget { publishAllLibraryVariants() compilations.all { kotlinOptions { jvmTarget = "17" } } } linuxX64() mingwX64() sourceSets { commonMain { dependencies { implementation kotlin('stdlib') api libs.kt.serialization } } commonTest { dependencies { implementation kotlin('test-common') implementation kotlin('test-annotations-common') implementation libs.kt.coroutines.test } } jvmTest { dependencies { implementation kotlin('test-junit') } } jsTest { dependencies { implementation kotlin('test-js') implementation kotlin('test-junit') } } androidUnitTest { dependencies { implementation kotlin('test-junit') implementation libs.android.test.junit implementation libs.android.espresso } } mingwX64Test { dependencies { implementation kotlin('test-junit') } } linuxX64Test { dependencies { implementation kotlin('test-junit') } } androidMain.dependsOn jvmMain } } apply from: "$defaultAndroidSettingsPresetPath" java { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 }