File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ javadoc {
4646 source subproject. javadoc. source
4747 options. links subproject. javadoc. options. links. toArray(new String [0 ])
4848 }
49- exclude ' io/grpc/internal/**'
5049}
5150
5251task jacocoMerge (type : JacocoMerge ) {
Original file line number Diff line number Diff line change @@ -10,4 +10,8 @@ dependencies {
1010 signature " org.codehaus.mojo.signature:java16:+@signature"
1111}
1212
13- javadoc. exclude ' io/grpc/internal/**'
13+ javadoc {
14+ // We want io.grpc.Internal, but not io.grpc.Internal*
15+ exclude ' io/grpc/Internal?*.java'
16+ exclude ' io/grpc/internal/**'
17+ }
Original file line number Diff line number Diff line change @@ -16,7 +16,10 @@ dependencies {
1616 it. options. compilerArgs + = [" -Xep:FutureReturnValueIgnored:OFF" ]
1717}
1818
19- javadoc. options. links ' http://netty.io/4.1/api/'
19+ javadoc {
20+ options. links ' http://netty.io/4.1/api/'
21+ exclude ' io/grpc/netty/Internal*'
22+ }
2023
2124project. sourceSets {
2225 main {
You can’t perform that action at this time.
0 commit comments