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

30 lines
574 B
Plaintext
Raw Permalink 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{
2023-02-18 19:49:41 +03:00
jvm()
js()
2022-10-03 20:36:28 +03:00
native()
2022-06-22 20:00:27 +03:00
useCoroutines()
2023-03-20 17:53:40 +03:00
useSerialization{
protobuf()
}
2023-11-26 09:59:28 +03:00
commonMain{
dependencies {
api(projects.dataforgeContext)
api(projects.dataforgeData)
api(projects.dataforgeIo)
}
}
jvmTest{
dependencies {
implementation(spclibs.logback.classic)
implementation(projects.dataforgeIo.dataforgeIoYaml)
}
}
2021-02-07 12:46:15 +03:00
}
readme{
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
2019-01-30 18:57:14 +03:00
}