2021-04-11 23:27:15 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
`maven-publish`
|
2021-08-23 15:52:10 +08:00
|
|
|
id("ts-gradle")
|
2021-04-11 23:27:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-11 23:38:28 +08:00
|
|
|
implementation(project(":ts-core"))
|
|
|
|
implementation(project(":ts-core:ts-buffer"))
|
|
|
|
implementation(project(":ts-core:ts-datastruct"))
|
2022-04-10 17:00:19 +08:00
|
|
|
compileOnly(project(":ts-core:ts-coroutine"))
|
2021-04-11 23:27:15 +08:00
|
|
|
compileOnly(project(":ts-core:ts-json"))
|
2022-04-10 17:00:19 +08:00
|
|
|
compileOnly(group = "com.aayushatharva.brotli4j", name = "brotli4j", version = "1.7.1")
|
2021-08-18 17:37:19 +08:00
|
|
|
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.32")
|
2021-04-11 23:27:15 +08:00
|
|
|
}
|