TursomServer/ts-core/ts-async-http/build.gradle.kts

16 lines
742 B
Plaintext
Raw Permalink Normal View History

2021-04-19 15:47:15 +08:00
dependencies {
api(project(":"))
api(project(":ts-core"))
2021-04-19 15:57:47 +08:00
api(project(":ts-core:ts-buffer"))
2021-04-19 15:47:15 +08:00
implementation(project(":ts-core:ts-xml"))
2023-10-25 10:30:01 +08:00
api(group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version = coroutineVersion)
2022-04-08 20:28:01 +08:00
api(group = "com.squareup.okhttp3", name = "okhttp", version = "4.9.3")
2023-10-25 10:30:01 +08:00
compileOnly(group = "io.netty", name = "netty-all", version = nettyVersion)
2021-09-03 17:34:02 +08:00
//api(group = "com.squareup.retrofit2", name = "converter-gson", version = "2.9.0")
//api(group = "com.squareup.retrofit2", name = "retrofit", version = "2.9.0")
2021-04-11 22:48:14 +08:00
// https://mvnrepository.com/artifact/org.jsoup/jsoup
2022-04-08 20:28:01 +08:00
//api(group = "org.jsoup", name = "jsoup", version = "1.14.3")
2021-04-19 15:57:47 +08:00
testImplementation(project(":ts-core:ts-coroutine"))
2021-04-19 15:47:15 +08:00
}