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

16 lines
275 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"))
}
}
}
}