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

21 lines
387 B
Plaintext
Raw Normal View History

2020-01-29 21:34:51 +03:00
plugins {
2021-02-23 17:40:28 +03:00
id("ru.mipt.npm.gradle.mpp")
id("ru.mipt.npm.gradle.native")
2020-01-29 21:34:51 +03:00
}
kotlin {
sourceSets {
2021-02-23 17:40:28 +03:00
commonMain{
2020-01-29 21:34:51 +03:00
dependencies {
api(project(":dataforge-context"))
api(project(":dataforge-io"))
2021-02-23 17:40:28 +03:00
api(kotlin("reflect"))
2020-01-29 21:34:51 +03:00
}
}
}
2021-02-07 12:46:15 +03:00
}
readme{
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
2020-01-29 21:34:51 +03:00
}