2021-04-11 23:38:28 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
`maven-publish`
|
2021-08-23 15:52:10 +08:00
|
|
|
id("ts-gradle")
|
2021-04-11 23:38:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":"))
|
|
|
|
implementation(project(":ts-web"))
|
2021-11-17 14:40:33 +08:00
|
|
|
implementation(project(":ts-core"))
|
2021-04-11 23:38:28 +08:00
|
|
|
implementation(project(":ts-core:ts-buffer"))
|
|
|
|
implementation(project(":ts-core:ts-json"))
|
2021-08-18 17:37:19 +08:00
|
|
|
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.32")
|
2022-01-06 15:29:32 +08:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
|
2021-04-11 23:38:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|