mirror of
https://github.com/square/okhttp.git
synced 2025-11-23 06:42:24 +03:00
20 lines
475 B
Kotlin
20 lines
475 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(projects.okhttp)
|
|
testImplementation(projects.mockwebserver3)
|
|
testRuntimeOnly(projects.mockwebserver3Junit5)
|
|
testImplementation(projects.okhttpTls)
|
|
testImplementation(projects.okhttpTestingSupport)
|
|
testImplementation(libs.httpClient5)
|
|
testImplementation(libs.jettyClient)
|
|
testImplementation(libs.junit)
|
|
testImplementation(libs.assertj.core)
|
|
}
|
|
|
|
tasks.compileJava {
|
|
options.isWarnings = false
|
|
}
|