mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-19 16:20:08 +08:00
16 lines
215 B
Plaintext
16 lines
215 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":ts-core"))
|
|
// 解析YAML
|
|
implementation(group = "org.yaml", name = "snakeyaml", version = "1.29")
|
|
}
|
|
|
|
|
|
|
|
|