mirror of https://github.com/grpc/grpc-java.git
all: Filter out Internal* classes from Javadoc
core's sources already have filters applied, so it isn't necessary to copy them to all.
This commit is contained in:
parent
532450996a
commit
cb53bbf0be
|
|
@ -46,7 +46,6 @@ javadoc {
|
|||
source subproject.javadoc.source
|
||||
options.links subproject.javadoc.options.links.toArray(new String[0])
|
||||
}
|
||||
exclude 'io/grpc/internal/**'
|
||||
}
|
||||
|
||||
task jacocoMerge(type: JacocoMerge) {
|
||||
|
|
|
|||
|
|
@ -10,4 +10,8 @@ dependencies {
|
|||
signature "org.codehaus.mojo.signature:java16:+@signature"
|
||||
}
|
||||
|
||||
javadoc.exclude 'io/grpc/internal/**'
|
||||
javadoc {
|
||||
// We want io.grpc.Internal, but not io.grpc.Internal*
|
||||
exclude 'io/grpc/Internal?*.java'
|
||||
exclude 'io/grpc/internal/**'
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,10 @@ dependencies {
|
|||
it.options.compilerArgs += ["-Xep:FutureReturnValueIgnored:OFF"]
|
||||
}
|
||||
|
||||
javadoc.options.links 'http://netty.io/4.1/api/'
|
||||
javadoc {
|
||||
options.links 'http://netty.io/4.1/api/'
|
||||
exclude 'io/grpc/netty/Internal*'
|
||||
}
|
||||
|
||||
project.sourceSets {
|
||||
main {
|
||||
|
|
|
|||
Loading…
Reference in New Issue