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

16 lines
321 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"))
2019-08-07 11:38:25 +03:00
api(project(":dataforge-output"))
2019-01-30 18:57:14 +03:00
}
}
}
}