elonazoulay commented on a change in pull request #5599: URL: https://github.com/apache/incubator-pinot/pull/5599#discussion_r453799086
########## File path: pom.xml ########## @@ -1140,10 +1160,38 @@ <artifactId>reflections</artifactId> <version>${reflections.version}</version> </dependency> + <!-- protobuf and grpc --> + <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> + <version>${protobuf.version}</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-netty-shaded</artifactId> + <version>${grpc.version}</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-protobuf</artifactId> + <version>${grpc.version}</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-stub</artifactId> + <version>${grpc.version}</version> + </dependency> </dependencies> </dependencyManagement> <build> <defaultGoal>clean install</defaultGoal> + <extensions> + <extension> + <groupId>kr.motd.maven</groupId> + <artifactId>os-maven-plugin</artifactId> Review comment: This is plugin is used to detect the os and include the protoc for that os: https://grpc.io/docs/languages/java/generated-code/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org