mirror of
https://github.com/tursom/TursomServer.git
synced 2025-03-13 19:30:10 +08:00
20 lines
410 B
Plaintext
20 lines
410 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":ts-core"))
|
|
implementation(project(":ts-core:ts-buffer"))
|
|
implementation(project(":ts-core:ts-pool"))
|
|
implementation(project(":ts-core:ts-datastruct"))
|
|
|
|
testApi(group = "com.google.code.gson", name = "gson", version = "2.8.9")
|
|
testApi(group = "junit", name = "junit", version = "4.13.2")
|
|
}
|
|
|
|
|
|
|
|
|