2021-10-19 05:02:15 -07:00
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
2022-06-13 11:06:23 -07:00
|
|
|
id("secant.kotlin-multiplatform-build-conventions")
|
|
|
|
id("secant.dependency-conventions")
|
2023-03-09 03:32:31 -08:00
|
|
|
|
|
|
|
id("org.jetbrains.kotlinx.kover")
|
|
|
|
id("secant.kover-conventions")
|
2021-10-19 05:02:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvm()
|
|
|
|
sourceSets {
|
|
|
|
getByName("commonMain") {
|
|
|
|
dependencies {
|
|
|
|
api(libs.kotlinx.coroutines.core)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getByName("commonTest") {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test"))
|
2021-12-24 05:34:17 -08:00
|
|
|
implementation(libs.kotlinx.coroutines.test)
|
2021-10-19 05:02:15 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
getByName("jvmMain") {
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getByName("jvmTest") {
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("test"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|