okhttp: exclude Internal* from javadoc

This commit is contained in:
Sergii Tkachenko 2020-10-20 21:19:52 -04:00 committed by Sergii Tkachenko
parent 19485014fd
commit 641c54eb3d
1 changed files with 5 additions and 2 deletions

View File

@ -35,8 +35,11 @@ project.sourceSets {
checkstyleMain.exclude '**/io/grpc/okhttp/internal/**'
javadoc.exclude 'io/grpc/okhttp/internal/**'
javadoc.options.links 'http://square.github.io/okhttp/2.x/okhttp/'
javadoc {
options.links 'http://square.github.io/okhttp/2.x/okhttp/'
exclude 'io/grpc/okhttp/Internal*'
exclude 'io/grpc/okhttp/internal/**'
}
jacocoTestReport {
classDirectories.from = sourceSets.main.output.collect {