2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
|
|
|
}
|
|
|
|
|
|
|
|
val kotlinLoggingVersion: String by project.extra
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js {
|
|
|
|
browser {}
|
|
|
|
}
|
|
|
|
|
2020-10-28 05:55:05 +08:00
|
|
|
jvm()
|
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-common"))
|
|
|
|
implementation(kotlin("test-annotations-common"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 05:55:05 +08:00
|
|
|
getByName("jsTest") {
|
2020-10-11 05:48:38 +08:00
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-js"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 05:55:05 +08:00
|
|
|
getByName("jvmTest") {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test-junit"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|