2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
|
|
|
}
|
|
|
|
|
2020-12-06 04:48:26 +08:00
|
|
|
val coroutinesVersion: String by project.ext
|
2021-03-20 04:32:57 +08:00
|
|
|
val junitVersion: String by project.extra
|
2020-10-11 05:48:38 +08:00
|
|
|
val kotlinLoggingVersion: String by project.extra
|
|
|
|
|
2021-03-20 04:32:57 +08:00
|
|
|
tasks.withType<Test> {
|
|
|
|
useJUnitPlatform()
|
2021-03-06 20:33:04 +08:00
|
|
|
}
|
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
kotlin {
|
|
|
|
js {
|
|
|
|
browser {}
|
|
|
|
}
|
|
|
|
|
2020-10-28 05:55:05 +08:00
|
|
|
jvm()
|
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
sourceSets {
|
2021-03-21 23:54:49 +08:00
|
|
|
all {
|
|
|
|
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
|
|
|
}
|
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2020-12-06 04:48:26 +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"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2021-03-20 04:32:57 +08:00
|
|
|
implementation(kotlin("test-junit5"))
|
|
|
|
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
|
2020-10-28 05:55:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|