sdk/sdk-scrapper/build.gradle

22 lines
717 B
Groovy
Raw Normal View History

2019-11-14 16:30:38 +01:00
plugins {
id 'java'
2019-11-14 17:49:27 +01:00
id 'org.jetbrains.kotlin.jvm'
2019-11-14 16:30:38 +01:00
}
dependencies {
implementation "pl.droidsonroids:jspoon:$jspoon"
implementation "pl.droidsonroids.retrofit2:converter-jspoon:$jspoon"
2019-11-14 17:49:27 +01:00
implementation "com.squareup.okhttp3:okhttp-urlconnection:$okhttp3"
2019-11-14 16:30:38 +01:00
implementation "com.squareup.retrofit2:retrofit:$retrofit"
implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofit"
implementation "com.squareup.retrofit2:converter-scalars:$retrofit"
2019-11-14 17:49:27 +01:00
implementation "com.squareup.retrofit2:converter-gson:$retrofit"
2019-11-14 16:30:38 +01:00
implementation "com.github.jonyas:RxJava2Reauth:master"
implementation "org.slf4j:slf4j-api:$slf4j"
testImplementation "org.slf4j:slf4j-simple:$slf4j"
}