dataforge-core/dataforge-io/dataforge-io-yaml/build.gradle.kts

25 lines
399 B
Plaintext
Raw Normal View History

2019-10-28 19:37:15 +03:00
plugins {
id("space.kscience.gradle.mpp")
2019-10-28 19:37:15 +03:00
}
description = "YAML meta IO"
2020-08-29 11:45:31 +03:00
kscience {
2023-02-18 19:49:41 +03:00
jvm()
js()
2023-01-25 18:56:19 +03:00
native()
2023-02-18 19:49:41 +03:00
dependencies {
api(projects.dataforgeIo)
}
2023-02-20 18:31:56 +03:00
useSerialization{
2023-01-25 18:56:19 +03:00
yamlKt()
2021-01-30 19:49:28 +03:00
}
2020-03-13 19:15:37 +03:00
}
2019-12-22 20:29:32 +03:00
2021-02-05 09:49:35 +03:00
readme{
maturity = space.kscience.gradle.Maturity.PROTOTYPE
2021-02-05 09:49:35 +03:00
description ="""
YAML meta converters and Front Matter envelope format
""".trimIndent()
}