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

29 lines
552 B
Plaintext
Raw Normal View History

2019-01-30 18:57:14 +03:00
plugins {
id("space.kscience.gradle.mpp")
2019-01-30 18:57:14 +03:00
}
2022-06-22 20:00:27 +03:00
kscience{
2022-10-03 20:36:28 +03:00
native()
2022-06-22 20:00:27 +03:00
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
}
}
2022-10-03 20:36:28 +03:00
jvmTest{
dependencies{
implementation("ch.qos.logback:logback-classic:1.4.1")
}
}
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
}