TursomServer/utils/async-http/build.gradle

21 lines
886 B
Groovy
Raw Normal View History

2019-10-08 18:45:49 +08:00
dependencies {
2020-07-19 02:47:10 +08:00
implementation project(":")
implementation project(":utils")
api project(":utils:xml")
2019-10-08 18:45:49 +08:00
// kotlin 协程
2020-07-19 02:47:10 +08:00
//implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1'
// kotlin 反射
//implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
2019-10-08 18:45:49 +08:00
// OkHttp
2020-07-19 02:47:10 +08:00
//implementation("com.squareup.okhttp3:okhttp:3.14.1")
//implementation group: 'cglib', name: 'cglib', version: '3.3.0'
// https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-gson
2020-07-19 04:24:36 +08:00
api group: 'com.squareup.retrofit2', name: 'converter-gson', version: '2.9.0'
2020-07-19 02:47:10 +08:00
// https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit
2020-07-19 04:24:36 +08:00
compile group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.9.0'
2020-07-19 02:47:10 +08:00
// https://mvnrepository.com/artifact/org.jsoup/jsoup
api group: 'org.jsoup', name: 'jsoup', version: '1.13.1'
2019-10-08 18:45:49 +08:00
}