2021-04-19 15:47:15 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
`maven-publish`
|
2021-08-23 15:52:10 +08:00
|
|
|
id("ts-gradle")
|
2021-04-19 15:47:15 +08:00
|
|
|
}
|
2021-04-11 22:48:14 +08:00
|
|
|
|
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"))
|
2022-01-06 15:29:32 +08:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
|
|
|
|
compileOnly("com.squareup.okhttp3:okhttp:4.9.3")
|
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-01-06 15:29:32 +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
|
|
|
}
|