This is an automated email from the ASF dual-hosted git repository. penghui pushed a commit to branch branch-2.10 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit dfe0d0d4bf93c2040001870269bc8478eeafee7a Author: Lari Hotari <[email protected]> AuthorDate: Wed Apr 20 14:55:09 2022 +0300 [Build] Use grpc-bom to align grpc library versions (#15234) (cherry picked from commit 081f0d1d20165007de1ed8b0ebd130605e094910) --- pom.xml | 62 ++++++++------------------------------------------------------ 1 file changed, 8 insertions(+), 54 deletions(-) diff --git a/pom.xml b/pom.xml index 6d224cdecb1..fe7526f5781 100644 --- a/pom.xml +++ b/pom.xml @@ -927,6 +927,14 @@ flexible messaging model and an intuitive client API.</description> <version>${typetools.version}</version> </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-bom</artifactId> + <version>${grpc.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-all</artifactId> @@ -951,42 +959,6 @@ flexible messaging model and an intuitive client API.</description> </exclusions> </dependency> - <dependency> - <groupId>io.grpc</groupId> - <artifactId>grpc-api</artifactId> - <version>${grpc.version}</version> - </dependency> - - <dependency> - <groupId>io.grpc</groupId> - <artifactId>grpc-core</artifactId> - <version>${grpc.version}</version> - </dependency> - - <dependency> - <groupId>io.grpc</groupId> - <artifactId>grpc-netty</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-grpclb</artifactId> - <version>${grpc.version}</version> - </dependency> - - <dependency> - <groupId>io.grpc</groupId> - <artifactId>grpc-alts</artifactId> - <version>${grpc.version}</version> - </dependency> - <dependency> <groupId>com.google.http-client</groupId> <artifactId>google-http-client</artifactId> @@ -1005,12 +977,6 @@ flexible messaging model and an intuitive client API.</description> <version>${google-http-client.version}</version> </dependency> - <dependency> - <groupId>io.grpc</groupId> - <artifactId>grpc-netty-shaded</artifactId> - <version>${grpc.version}</version> - </dependency> - <dependency> <groupId>io.perfmark</groupId> <artifactId>perfmark-api</artifactId> @@ -1024,18 +990,6 @@ flexible messaging model and an intuitive client API.</description> </exclusions> </dependency> - <dependency> - <groupId>io.grpc</groupId> - <artifactId>grpc-stub</artifactId> - <version>${grpc.version}</version> - </dependency> - - <dependency> - <groupId>io.grpc</groupId> - <artifactId>grpc-protobuf-lite</artifactId> - <version>${grpc.version}</version> - </dependency> - <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-bom</artifactId>
