Skip to content

Commit

Permalink
(feat)Unify to define the serveral versions of grpc modules in the rp…
Browse files Browse the repository at this point in the history
…c-grpc-impl (sofastack#449)

* (feat)Unify to define the serveral versions of grpc modules in the rpc-grpc-impl.
  • Loading branch information
zongtanghu authored May 18, 2020
1 parent 51d8544 commit 8fd9cf3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions jraft-extension/rpc-grpc-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
<artifactId>rpc-grpc-impl</artifactId>
<name>jraft-extension ${project.version}</name>

<properties>
<io.grpc.version>1.17.0</io.grpc.version>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand All @@ -19,17 +23,17 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>1.17.0</version>
<version>${io.grpc.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.17.0</version>
<version>${io.grpc.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.17.0</version>
<version>${io.grpc.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 8fd9cf3

Please sign in to comment.