mirror of
https://github.com/square/okhttp.git
synced 2025-11-05 12:17:34 +08:00
27 lines
733 B
Groovy
27 lines
733 B
Groovy
Projects.applyOsgi(
|
|
project,
|
|
"Export-Package: okhttp3.dnsoverhttps",
|
|
"Automatic-Module-Name: okhttp3.dnsoverhttps",
|
|
"Bundle-SymbolicName: com.squareup.okhttp3.dnsoverhttps"
|
|
)
|
|
|
|
dependencies {
|
|
api project(':okhttp')
|
|
compileOnly Dependencies.jsr305
|
|
|
|
testImplementation project(':okhttp-testing-support')
|
|
testImplementation project(':mockwebserver-deprecated')
|
|
testImplementation project(':mockwebserver-junit5')
|
|
testImplementation Dependencies.okioFakeFileSystem
|
|
testImplementation Dependencies.conscrypt
|
|
testImplementation Dependencies.junit
|
|
testImplementation Dependencies.assertj
|
|
}
|
|
|
|
afterEvaluate { project ->
|
|
project.tasks.dokka {
|
|
outputDirectory = "$rootDir/docs/4.x"
|
|
outputFormat = 'gfm'
|
|
}
|
|
}
|