mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-11 04:10:09 +08:00
14 lines
341 B
Plaintext
14 lines
341 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":ts-core"))
|
|
implementation(project(":ts-core:ts-buffer"))
|
|
implementation(project(":ts-core:ts-datastruct"))
|
|
compileOnly(project(":ts-core:ts-json"))
|
|
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.32")
|
|
}
|