2019-11-14 16:30:38 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2019-11-14 17:49:27 +01:00
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
2020-09-26 14:34:32 +02:00
|
|
|
id 'kotlin-kapt'
|
2019-11-14 16:30:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "pl.droidsonroids:jspoon:$jspoon"
|
2021-09-04 12:45:34 +02:00
|
|
|
implementation "org.jsoup:jsoup:$jsoup"
|
2019-11-14 16:30:38 +01:00
|
|
|
|
2020-09-26 14:34:32 +02:00
|
|
|
testImplementation "com.squareup.okhttp3:mockwebserver:$okhttp3"
|
2019-11-14 16:30:38 +01:00
|
|
|
implementation "com.squareup.retrofit2:retrofit:$retrofit"
|
2020-09-26 14:34:32 +02:00
|
|
|
implementation "com.squareup.retrofit2:converter-moshi:$retrofit"
|
2020-06-14 23:00:16 +02:00
|
|
|
implementation "com.squareup.retrofit2:converter-scalars:$retrofit"
|
|
|
|
implementation "pl.droidsonroids.retrofit2:converter-jspoon:$jspoon"
|
2019-11-14 16:30:38 +01:00
|
|
|
|
2021-05-01 16:17:32 +02:00
|
|
|
implementation "com.squareup.moshi:moshi:$moshi"
|
|
|
|
implementation "com.squareup.moshi:moshi-adapters:$moshi"
|
|
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi"
|
2020-09-26 14:34:32 +02:00
|
|
|
|
2020-06-14 23:00:16 +02:00
|
|
|
implementation "com.squareup.okhttp3:okhttp-urlconnection:$okhttp3"
|
2019-11-14 16:30:38 +01:00
|
|
|
}
|