1
0
mirror of https://github.com/square/okhttp.git synced 2025-11-23 06:42:24 +03:00
Files
okhttp/samples/guide/build.gradle
2020-03-16 09:09:22 +00:00

15 lines
313 B
Groovy

apply plugin: 'kotlin-kapt'
dependencies {
implementation project(':okhttp')
implementation project(':mockwebserver')
implementation project(':okhttp-tls')
implementation deps.animalSniffer
implementation deps.moshi
kapt deps.moshiKotlin
}
tasks.withType(JavaCompile) {
options.warnings = false
}