javadoc: exclude internal APIs

Fixes #5858 in master
This commit is contained in:
ZHANG Dapeng 2019-06-10 13:36:21 -07:00 committed by GitHub
parent 33c30db42c
commit b69b15fddb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -28,5 +28,4 @@ dependencies {
javadoc { javadoc {
// We want io.grpc.Internal, but not io.grpc.Internal* // We want io.grpc.Internal, but not io.grpc.Internal*
exclude 'io/grpc/Internal?*.java' exclude 'io/grpc/Internal?*.java'
exclude 'io/grpc/internal/**'
} }

View File

@ -32,6 +32,7 @@ dependencies {
} }
javadoc { javadoc {
exclude 'io/grpc/internal/**'
// Disabled until kinda stable. // Disabled until kinda stable.
exclude 'io/grpc/perfmark/**' exclude 'io/grpc/perfmark/**'
} }