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

17 lines
296 B
Plaintext
Raw Normal View History

2020-02-17 14:46:02 +03:00
plugins {
id("scientifik.mpp")
id("scientifik.publish")
}
val dataforgeVersion: String by rootProject.extra
kotlin {
sourceSets {
commonMain{
dependencies {
2020-02-22 22:02:57 +03:00
api("hep.dataforge:dataforge-context:$dataforgeVersion")
2020-02-17 14:46:02 +03:00
}
}
}
}