TursomServer/ts-web/build.gradle.kts
2023-10-25 10:30:01 +08:00

15 lines
461 B
Plaintext

plugins {
kotlin("jvm")
id("ts-gradle")
}
dependencies {
implementation(project(":ts-core"))
implementation(project(":ts-core:ts-buffer"))
implementation(project(":ts-core:ts-datastruct"))
compileOnly(project(":ts-core:ts-coroutine"))
compileOnly(project(":ts-core:ts-json"))
compileOnly(group = "com.aayushatharva.brotli4j", name = "brotli4j", version = "1.7.1")
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.32")
}