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

15 lines
304 B
Plaintext
Raw Normal View History

2019-01-30 18:57:14 +03:00
plugins {
2020-08-29 11:45:31 +03:00
id("kscience.mpp")
2019-01-30 18:57:14 +03:00
}
kotlin {
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
}
}
}
}