1
0
mirror of https://github.com/square/okhttp.git synced 2025-12-05 06:42:05 +03:00
Files
okhttp/okhttp-testing-support/build.gradle.kts
Jesse Wilson 35bb1740a4 Convert the main build.gradle file to KTS (#6925)
I attempted to do a literal translation as much as possible.
Subprojects now need plugins to be configured directly so they
can use the appropriate syntax.
2021-11-24 07:19:39 +00:00

26 lines
564 B
Kotlin

plugins {
kotlin("jvm")
id("ru.vyarus.animalsniffer")
}
dependencies {
api(project(":okhttp"))
api(Dependencies.assertj)
api(Dependencies.bouncycastle)
implementation(Dependencies.bouncycastlepkix)
implementation(Dependencies.bouncycastletls)
api(Dependencies.conscrypt)
api(Dependencies.corretto)
api(Dependencies.openjsse)
api(Dependencies.hamcrest)
api(Dependencies.junit5Api)
api(Dependencies.junit5JupiterParams)
compileOnly(Dependencies.jsr305)
compileOnly(Dependencies.android)
}
animalsniffer {
isIgnoreFailures = true
}