mirror of
https://github.com/square/okhttp.git
synced 2025-11-23 06:42:24 +03:00
26 lines
531 B
Kotlin
26 lines
531 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
kotlin("kapt")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.okhttp)
|
|
implementation(projects.mockwebserver)
|
|
implementation(projects.okhttpTestingSupport)
|
|
implementation(projects.okhttpTls)
|
|
implementation(libs.animalsniffer.annotations)
|
|
implementation(libs.squareup.moshi)
|
|
implementation(libs.squareup.okio.fakefilesystem)
|
|
kapt(libs.squareup.moshi.compiler)
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
|
|
tasks.compileJava {
|
|
options.isWarnings = false
|
|
}
|