mirror of
https://github.com/square/okhttp.git
synced 2025-12-05 06:42:05 +03:00
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.
26 lines
564 B
Kotlin
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
|
|
}
|