2021-04-11 18:15:58 +08:00
|
|
|
plugins {
|
2021-07-10 12:04:11 +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-10 12:04:11 +08:00
|
|
|
implementation(project(":ts-core"))
|
|
|
|
implementation(project(":ts-core:ts-buffer"))
|
|
|
|
implementation(project(":ts-core:ts-pool"))
|
|
|
|
implementation(project(":ts-core:ts-datastruct"))
|
2022-05-13 23:16:40 +08:00
|
|
|
|
|
|
|
testApi(group = "com.google.code.gson", name = "gson", version = "2.8.9")
|
|
|
|
testApi(group = "junit", name = "junit", version = "4.13.2")
|
2021-04-11 18:15:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-11 18:56:37 +08:00
|
|
|
|
2021-04-11 18:48:18 +08:00
|
|
|
|