TursomServer/ts-core/ts-yaml/build.gradle.kts

16 lines
215 B
Plaintext
Raw Normal View History

2021-04-11 22:59:42 +08:00
plugins {
2021-07-10 12:04:11 +08:00
kotlin("jvm")
`maven-publish`
2021-08-23 15:52:10 +08:00
id("ts-gradle")
2021-04-11 22:59:42 +08:00
}
dependencies {
2021-07-10 12:04:11 +08:00
implementation(project(":ts-core"))
// 解析YAML
2021-08-18 17:37:19 +08:00
implementation(group = "org.yaml", name = "snakeyaml", version = "1.29")
2021-04-11 22:59:42 +08:00
}