1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-12 10:23:16 +03:00
Files
okhttp/okhttp-dnsoverhttps/build.gradle.kts
Jesse Wilson 27ddd2c286 Drop the findbugs dependency (#8769)
We don't need it.

Co-authored-by: Jesse Wilson <jwilson@squareup.com>
2025-05-13 20:51:50 -04:00

33 lines
905 B
Kotlin

import com.vanniktech.maven.publish.JavadocJar
import com.vanniktech.maven.publish.KotlinJvm
plugins {
kotlin("jvm")
id("org.jetbrains.dokka")
id("com.vanniktech.maven.publish.base")
id("binary-compatibility-validator")
}
project.applyOsgi(
"Export-Package: okhttp3.dnsoverhttps",
"Automatic-Module-Name: okhttp3.dnsoverhttps",
"Bundle-SymbolicName: com.squareup.okhttp3.dnsoverhttps"
)
dependencies {
"friendsApi"(projects.okhttp)
testImplementation(projects.okhttpTestingSupport)
testImplementation(projects.mockwebserver)
testImplementation(projects.mockwebserver3Junit5)
testImplementation(libs.squareup.okio.fakefilesystem)
testImplementation(libs.conscrypt.openjdk)
testImplementation(libs.junit)
testImplementation(libs.kotlin.test.common)
testImplementation(libs.kotlin.test.junit)
}
mavenPublishing {
configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
}