2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
|
|
|
}
|
|
|
|
|
2020-10-17 06:28:35 +08:00
|
|
|
val coroutinesVersion: String by project.ext
|
2020-10-11 05:48:38 +08:00
|
|
|
val kotlinLoggingVersion: String by project.extra
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js {
|
|
|
|
browser {}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2020-10-17 06:28:35 +08:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
2020-10-11 05:48:38 +08:00
|
|
|
api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-common"))
|
|
|
|
implementation(kotlin("test-annotations-common"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val jsTest by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-js"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("test") {
|
|
|
|
dependsOn("allTests")
|
|
|
|
}
|