2019-01-30 18:57:14 +03:00
|
|
|
plugins {
|
2022-08-01 18:12:57 +03:00
|
|
|
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-02-18 19:49:41 +03:00
|
|
|
dependencies {
|
|
|
|
api(projects.dataforgeContext)
|
|
|
|
api(projects.dataforgeData)
|
|
|
|
api(projects.dataforgeIo)
|
|
|
|
}
|
|
|
|
dependencies(jvmTest){
|
|
|
|
implementation(spclibs.logback.classic)
|
2023-03-27 09:45:51 +03:00
|
|
|
implementation(projects.dataforgeIo.dataforgeIoYaml)
|
2019-01-30 18:57:14 +03:00
|
|
|
}
|
2021-02-07 12:46:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
2022-08-01 18:12:57 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
2019-01-30 18:57:14 +03:00
|
|
|
}
|