dataforge-core/dataforge-workspace/build.gradle.kts

17 lines
325 B
Plaintext
Raw Normal View History

2019-01-30 18:57:14 +03:00
plugins {
id("scientifik.mpp")
2019-01-30 18:57:14 +03:00
}
kotlin {
jvm()
js()
sourceSets {
val commonMain by getting{
dependencies {
api(project(":dataforge-context"))
api(project(":dataforge-data"))
2019-08-07 11:38:25 +03:00
api(project(":dataforge-output"))
2019-01-30 18:57:14 +03:00
}
}
}
}