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

16 lines
317 B
Plaintext
Raw Normal View History

2019-01-30 18:57:14 +03:00
plugins {
2020-09-05 16:19:03 +03:00
id("ru.mipt.npm.mpp")
2020-09-14 20:32:41 +03:00
id("ru.mipt.npm.native")
2019-01-30 18:57:14 +03:00
}
kotlin {
sourceSets {
2020-08-31 11:27:44 +03:00
commonMain{
2019-01-30 18:57:14 +03:00
dependencies {
api(project(":dataforge-context"))
api(project(":dataforge-data"))
2020-10-17 17:22:34 +03:00
api(project(":dataforge-io"))
2019-01-30 18:57:14 +03:00
}
}
}
}