File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ def subprojects = [
1717 project(' :grpc-okhttp' ),
1818 project(' :grpc-protobuf' ),
1919 project(' :grpc-protobuf-lite' ),
20+ project(' :grpc-rls' ),
2021 project(' :grpc-services' ),
2122 project(' :grpc-stub' ),
2223 project(' :grpc-testing' ),
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ plugins {
22 id " java"
33 id " maven-publish"
44 id " com.google.protobuf"
5+ id " jacoco"
56}
67
78description = " gRPC: RouteLookupService Loadbalancing plugin"
@@ -19,6 +20,18 @@ dependencies {
1920 project(' :grpc-core' ). sourceSets. test. output // for FakeClock
2021}
2122
23+ javadoc {
24+ exclude ' io/grpc/rls/internal/**'
25+ // do not publish javadoc since it is not published yet
26+ exclude ' io/grpc/rls/**'
27+ }
28+
29+ jacocoTestReport {
30+ classDirectories. from = sourceSets. main. output. collect {
31+ fileTree(dir : it, exclude : [' **/io/grpc/lookup/**' ])
32+ }
33+ }
34+
2235configureProtoCompilation()
2336
2437// do not publish 'grpc-rls'
You can’t perform that action at this time.
0 commit comments