34 lines
796 B
Plaintext
34 lines
796 B
Plaintext
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
id("secant.kotlin-multiplatform-build-conventions")
|
||
|
id("secant.dependency-conventions")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
jvm()
|
||
|
sourceSets {
|
||
|
getByName("commonMain") {
|
||
|
dependencies {
|
||
|
api(libs.kotlinx.datetime)
|
||
|
api(libs.kotlinx.coroutines.core)
|
||
|
api(libs.kotlinx.immutable)
|
||
|
}
|
||
|
}
|
||
|
getByName("commonTest") {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test"))
|
||
|
api(libs.kotlinx.coroutines.test)
|
||
|
}
|
||
|
}
|
||
|
getByName("jvmMain") {
|
||
|
dependencies {
|
||
|
}
|
||
|
}
|
||
|
getByName("jvmTest") {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|