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

34 lines
571 B
Plaintext
Raw Normal View History

2019-10-28 19:37:15 +03:00
plugins {
2021-02-23 17:40:28 +03:00
id("ru.mipt.npm.gradle.mpp")
// id("ru.mipt.npm.gradle.native")
2019-10-28 19:37:15 +03:00
}
description = "YAML meta IO"
2020-08-29 11:45:31 +03:00
kscience {
2021-01-30 19:49:28 +03:00
useSerialization{
2021-02-07 12:46:15 +03:00
yamlKt("0.9.0-dev-1")
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-07 12:46:15 +03:00
repositories{
maven("https://dl.bintray.com/mamoe/yamlkt")
}
2020-12-04 10:19:42 +03:00
kotlin {
sourceSets {
2021-01-30 19:49:28 +03:00
commonMain{
2020-12-04 10:19:42 +03:00
dependencies {
api(project(":dataforge-io"))
}
}
}
2019-10-28 19:37:15 +03:00
}
2021-02-05 09:49:35 +03:00
readme{
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
description ="""
YAML meta converters and Front Matter envelope format
""".trimIndent()
}