mirror of
https://github.com/square/okhttp.git
synced 2025-11-23 06:42:24 +03:00
15 lines
313 B
Groovy
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
|
|
}
|