TursomServer/ts-web/build.gradle.kts

14 lines
341 B
Plaintext
Raw Normal View History

2021-04-11 23:27:15 +08:00
plugins {
kotlin("jvm")
`maven-publish`
2021-08-23 15:52:10 +08:00
id("ts-gradle")
2021-04-11 23:27:15 +08:00
}
dependencies {
2021-04-11 23:38:28 +08:00
implementation(project(":ts-core"))
implementation(project(":ts-core:ts-buffer"))
implementation(project(":ts-core:ts-datastruct"))
2021-04-11 23:27:15 +08:00
compileOnly(project(":ts-core:ts-json"))
2021-08-18 17:37:19 +08:00
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.32")
2021-04-11 23:27:15 +08:00
}