mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-21 01:00:07 +08:00
20 lines
436 B
Plaintext
20 lines
436 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":"))
|
|
implementation(project(":ts-web"))
|
|
implementation(project(":ts-core"))
|
|
implementation(project(":ts-core:ts-buffer"))
|
|
implementation(project(":ts-core:ts-json"))
|
|
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.32")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
|
|
}
|
|
|
|
|
|
|
|
|