mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-21 01:00:07 +08:00
19 lines
349 B
Plaintext
19 lines
349 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":ts-core"))
|
|
api(project(":ts-core:ts-buffer"))
|
|
api(project(":ts-core:ts-log"))
|
|
api(project(":ts-web"))
|
|
api(group = "io.netty", name = "netty-all", version = "4.1.72.Final")
|
|
api(group = "org.slf4j", name = "slf4j-api", version = "1.7.32")
|
|
}
|
|
|
|
|
|
|
|
|