This is an automated email from the ASF dual-hosted git repository. zhaocong pushed a commit to branch fix_maven_dependency in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-computer.git
commit 49efefa2bdc3232d3e492463310282a72a6cb583 Author: coderzc <[email protected]> AuthorDate: Sat May 6 15:18:20 2023 +0800 fix dependency --- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pom.xml b/pom.xml index 028af9b3..1e42a2a0 100644 --- a/pom.xml +++ b/pom.xml @@ -139,9 +139,19 @@ <groupId>org.apache.hugegraph</groupId> <artifactId>hugegraph-common</artifactId> </exclusion> + <exclusion> + <groupId>io.grpc</groupId> + <artifactId>grpc-core</artifactId> + </exclusion> </exclusions> </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-core</artifactId> + <version>1.28.1</version> + </dependency> + <dependency> <groupId>org.apache.hugegraph</groupId> <artifactId>hugegraph-client</artifactId>
