18 lines
211 B
Plaintext
18 lines
211 B
Plaintext
|
|
plugins {
|
|
id("kscience.jvm")
|
|
}
|
|
|
|
description = "YAML meta IO"
|
|
|
|
kscience {
|
|
useSerialization {
|
|
yaml()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":dataforge-io"))
|
|
api("org.yaml:snakeyaml:1.26")
|
|
}
|