| plugins { |
| id "java" |
| id "maven-publish" |
| id "com.google.protobuf" |
| } |
| |
| description = "gRPC: RouteLookupService Loadbalancing plugin" |
| |
| evaluationDependsOn(project(':grpc-core').path) |
| |
| dependencies { |
| implementation project(':grpc-core'), |
| project(':grpc-protobuf'), |
| project(':grpc-stub') |
| compileOnly libraries.javax_annotation |
| testCompile libraries.truth, |
| project(':grpc-core').sourceSets.test.output // for FakeClock |
| } |
| |
| configureProtoCompilation() |
| |
| // do not publish 'grpc-rls' |
| [publishMavenPublicationToMavenRepository]*.onlyIf { false } |