25 lines
399 B
Plaintext
25 lines
399 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
}
|
|
|
|
description = "YAML meta IO"
|
|
|
|
kscience {
|
|
jvm()
|
|
js()
|
|
native()
|
|
dependencies {
|
|
api(projects.dataforgeIo)
|
|
}
|
|
useSerialization{
|
|
yamlKt()
|
|
}
|
|
}
|
|
|
|
readme{
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
|
description ="""
|
|
YAML meta converters and Front Matter envelope format
|
|
""".trimIndent()
|
|
}
|