1
0
mirror of https://github.com/square/okhttp.git synced 2025-11-24 18:41:06 +03:00
Files
okhttp/okhttp-dnsoverhttps/build.gradle
2019-06-21 23:23:46 -04:00

26 lines
535 B
Groovy

apply plugin: 'com.vanniktech.maven.publish'
jar {
manifest {
attributes('Automatic-Module-Name': 'okhttp3.dnsoverhttps')
}
}
dependencies {
api project(':okhttp')
compileOnly deps.jsr305
testImplementation project(':okhttp-testing-support')
testImplementation project(':mockwebserver')
testImplementation deps.conscrypt
testImplementation deps.junit
testImplementation deps.assertj
}
afterEvaluate { project ->
project.tasks.dokka {
outputDirectory = "$rootDir/docs/4.x"
outputFormat = 'gfm'
}
}