mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-16 06:40:28 +08:00
21 lines
500 B
Plaintext
21 lines
500 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
api(kotlin("stdlib-jdk8"))
|
|
api(kotlin("reflect"))
|
|
api(group = "org.slf4j", name = "slf4j-api", version = "1.7.32")
|
|
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
|
|
compileOnly(group = "com.google.code.gson", name = "gson", version = "2.8.9")
|
|
compileOnly(group = "io.netty", name = "netty-all", version = "4.1.72.Final")
|
|
|
|
testApi(group = "junit", name = "junit", version = "4.13.2")
|
|
}
|
|
|
|
|
|
|
|
|