visionforge/dataforge-vis-common/build.gradle.kts

24 lines
481 B
Plaintext
Raw Normal View History

2019-03-08 11:55:01 +03:00
plugins {
2019-06-30 14:35:54 +03:00
id("scientifik.mpp")
2019-03-08 11:55:01 +03:00
}
scientifik{
serialization = true
}
2019-03-08 11:55:01 +03:00
val dataforgeVersion: String by rootProject.extra
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
2019-03-25 22:12:22 +03:00
api("hep.dataforge:dataforge-output:$dataforgeVersion")
2019-06-02 20:32:31 +03:00
}
}
val jsMain by getting {
2019-06-02 20:32:31 +03:00
dependencies {
2019-06-30 14:35:54 +03:00
api("hep.dataforge:dataforge-output-html:$dataforgeVersion")
2019-03-08 11:55:01 +03:00
}
}
}
}