Skip to content

Commit

Permalink
okhttp: exclude Internal* from javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiitk committed Oct 21, 2020
1 parent 1948501 commit 641c54e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions okhttp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 641c54e

Please sign in to comment.