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

17 lines
222 B
Plaintext
Raw Normal View History

2020-05-17 20:20:20 +03:00
import scientifik.useSerialization
2019-12-22 20:29:32 +03:00
2019-10-28 19:37:15 +03:00
plugins {
id("scientifik.jvm")
}
description = "YAML meta IO"
2020-05-17 20:20:20 +03:00
useSerialization{
2020-03-13 19:15:37 +03:00
yaml()
}
2019-12-22 20:29:32 +03:00
2019-10-28 19:37:15 +03:00
dependencies {
api(project(":dataforge-io"))
2020-03-13 19:15:37 +03:00
api("org.yaml:snakeyaml:1.26")
2019-10-28 19:37:15 +03:00
}