mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-19 16:20:08 +08:00
23 lines
666 B
Plaintext
23 lines
666 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":"))
|
|
api(project(":ts-core"))
|
|
api(project(":ts-core:ts-buffer"))
|
|
implementation(project(":ts-core:ts-xml"))
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
|
|
compileOnly("com.squareup.okhttp3:okhttp:4.9.3")
|
|
//api(group = "com.squareup.retrofit2", name = "converter-gson", version = "2.9.0")
|
|
//api(group = "com.squareup.retrofit2", name = "retrofit", version = "2.9.0")
|
|
|
|
// https://mvnrepository.com/artifact/org.jsoup/jsoup
|
|
api(group = "org.jsoup", name = "jsoup", version = "1.14.3")
|
|
|
|
|
|
testImplementation(project(":ts-core:ts-coroutine"))
|
|
}
|