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

24 lines
440 B
Plaintext
Raw Normal View History

2019-01-30 18:57:14 +03:00
plugins {
id("space.kscience.gradle.mpp")
id("space.kscience.gradle.native")
2019-01-30 18:57:14 +03:00
}
2022-06-22 20:00:27 +03:00
kscience{
useCoroutines()
}
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
}
}
}
2021-02-07 12:46:15 +03:00
}
readme{
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
2019-01-30 18:57:14 +03:00
}