controls-kt/dataforge-control-core/build.gradle.kts

26 lines
515 B
Plaintext
Raw Normal View History

2020-06-05 21:07:23 +03:00
import scientifik.useCoroutines
2020-02-17 14:46:02 +03:00
plugins {
id("scientifik.mpp")
id("scientifik.publish")
2020-06-05 21:07:23 +03:00
id("kotlinx-atomicfu") version "0.14.3"
2020-02-17 14:46:02 +03:00
}
val dataforgeVersion: String by rootProject.extra
2020-06-05 21:07:23 +03:00
useCoroutines(version = "1.3.7")
2020-02-17 14:46:02 +03:00
2020-06-05 21:07:23 +03:00
kotlin {
2020-02-17 14:46:02 +03:00
sourceSets {
commonMain{
dependencies {
2020-03-02 19:17:34 +03:00
api("hep.dataforge:dataforge-io:$dataforgeVersion")
2020-06-05 21:07:23 +03:00
//implementation("org.jetbrains.kotlinx:atomicfu-common:0.14.3")
2020-02-17 14:46:02 +03:00
}
}
}
2020-06-05 21:07:23 +03:00
}
atomicfu {
variant = "VH"
2020-02-17 14:46:02 +03:00
}