plugins { kotlin("multiplatform") } val coroutinesVersion: String by project.ext val junitVersion: String by project.extra val kotlinLoggingVersion: String by project.extra tasks.withType { useJUnitPlatform() } kotlin { js { browser {} } jvm() sourceSets { commonMain { dependencies { api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion") api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion") } } commonTest { dependencies { implementation(kotlin("test-common")) implementation(kotlin("test-annotations-common")) } } getByName("jsTest") { dependencies { implementation(kotlin("test-js")) } } getByName("jvmTest") { dependencies { implementation(kotlin("test-junit5")) runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion") } } } }