dataforge-core/dataforge-tables/build.gradle.kts
Alexander Nozik f906fbdb0a Tables basics
A lot of refactoring
2020-01-29 21:34:51 +03:00

14 lines
254 B
Plaintext

plugins {
id("scientifik.mpp")
}
kotlin {
sourceSets {
val commonMain by getting{
dependencies {
api(project(":dataforge-context"))
api(project(":dataforge-io"))
}
}
}
}