Skip to content

Commit

Permalink
Upgrade the grpc version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alonexc committed Apr 10, 2024
1 parent 46c796f commit bf33cad
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
34 changes: 26 additions & 8 deletions eventmesh-dashboard-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@
</properties>

<dependencies>
<!-- grpc -->
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
<version>1.51.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.1.3-jre</version>
</dependency>

<!-- EventMesh Dashboard modules -->
<dependency>
<groupId>org.apache.eventmesh.dashboard.common</groupId>
Expand All @@ -52,6 +64,12 @@
<version>0.0.1-SNAPSHOT</version>
</dependency>

<!--<dependency>-->
<!-- <groupId>io.grpc</groupId>-->
<!-- <artifactId>grpc-core</artifactId>-->
<!-- <version>1.50.2</version>-->
<!--</dependency>-->

<!-- eventmesh -->
<dependency>
<groupId>org.apache.eventmesh</groupId>
Expand All @@ -64,7 +82,13 @@
</exclusion>
</exclusions>
</dependency>


<!--<dependency>-->
<!-- <groupId>io.grpc</groupId>-->
<!-- <artifactId>grpc-netty</artifactId>-->
<!-- <version>1.17.1</version>-->
<!--</dependency>-->

<!-- Meta - nacos client -->
<dependency>
<groupId>com.alibaba.nacos</groupId>
Expand All @@ -74,13 +98,7 @@
<dependency>
<groupId>io.etcd</groupId>
<artifactId>jetcd-core</artifactId>
<version>0.3.0</version>
<exclusions>
<exclusion>
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
</exclusion>
</exclusions>
<version>0.7.5</version>
</dependency>

<!-- health check client -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class EtcdSDKCreateOperationTest {

private static final String value = "test";

private static final String url = "http://locaholst:2379";
private static final String url = "http://localhost:2379";

@Test
void testCreateClient() {
Expand Down

0 comments on commit bf33cad

Please sign in to comment.