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

31 lines
594 B
Plaintext
Raw Normal View History

2019-10-28 19:37:15 +03:00
plugins {
2020-12-04 10:19:42 +03:00
id("ru.mipt.npm.mpp")
2021-02-05 09:49:35 +03:00
// id("ru.mipt.npm.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{
yamlKt()
}
2020-03-13 19:15:37 +03:00
}
2019-12-22 20:29:32 +03:00
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"))
2021-02-05 09:49:35 +03:00
//api("net.mamoe.yamlkt:yamlkt:${ru.mipt.npm.gradle.KScienceVersions.Serialization.yamlKtVersion}")
2020-12-04 10:19:42 +03:00
}
}
}
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()
}