1
0
mirror of https://github.com/square/okhttp.git synced 2025-11-23 06:42:24 +03:00
Files
okhttp/samples/compare/build.gradle.kts
2022-02-17 19:03:07 +00:00

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
}