TursomServer/ts-core/ts-pool/build.gradle.kts

17 lines
222 B
Plaintext
Raw Normal View History

2021-04-11 18:15:58 +08:00
plugins {
2021-04-11 18:48:18 +08:00
kotlin("jvm")
`maven-publish`
2021-08-23 15:52:10 +08:00
id("ts-gradle")
2021-04-11 18:15:58 +08:00
}
dependencies {
2021-07-13 10:08:58 +08:00
api(project(":"))
api(project(":ts-core"))
api(project(":ts-core:ts-buffer"))
2021-04-11 23:38:28 +08:00
implementation(project(":ts-core:ts-datastruct"))
2021-04-11 18:15:58 +08:00
}
2021-04-11 18:56:37 +08:00
2021-04-11 18:48:18 +08:00