2021-01-19 13:24:24 +03:00
|
|
|
plugins {
|
2021-01-29 19:23:16 +03:00
|
|
|
kotlin("multiplatform")
|
2021-01-19 13:24:24 +03:00
|
|
|
id("ru.mipt.npm.kscience")
|
|
|
|
}
|
|
|
|
|
2021-01-29 19:23:16 +03:00
|
|
|
kscience {
|
2021-01-27 22:20:20 +03:00
|
|
|
publish()
|
|
|
|
}
|
|
|
|
|
2021-01-19 13:24:24 +03:00
|
|
|
val dataforgeVersion: String by rootProject.extra
|
|
|
|
|
2021-01-29 19:23:16 +03:00
|
|
|
kotlin.sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api("hep.dataforge:dataforge-context:$dataforgeVersion")
|
2021-02-01 21:48:03 +03:00
|
|
|
api("hep.dataforge:dataforge-data:$dataforgeVersion")
|
2021-01-29 19:23:16 +03:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-datetime:0.1.1")
|
|
|
|
}
|
|
|
|
}
|
2021-01-19 13:24:24 +03:00
|
|
|
}
|
2021-01-29 19:23:16 +03:00
|
|
|
|
|
|
|
|