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"))
|
2021-08-18 17:37:19 +08:00
|
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1")
|
2021-04-19 15:47:15 +08:00
|
|
|
api(group = "com.squareup.retrofit2", name = "converter-gson", version = "2.9.0")
|
2021-04-11 22:48:14 +08:00
|
|
|
// https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit
|
2021-04-19 15:47:15 +08:00
|
|
|
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
|
2021-08-18 17:37:19 +08:00
|
|
|
api(group = "org.jsoup", name = "jsoup", version = "1.14.2")
|
2021-04-19 15:57:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
testImplementation(project(":ts-core:ts-coroutine"))
|
2021-04-19 15:47:15 +08:00
|
|
|
}
|