This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch custos-integration in repository https://gitbox.apache.org/repos/asf/airavata-data-catalog.git
commit e4adca5b71984b4f9a2cf8cc9e17df8760e7cea1 Author: Marcus Christie <[email protected]> AuthorDate: Wed May 3 09:49:38 2023 -0400 Custos sdk dependency fixes --- data-catalog-api/server/custos-sharing/pom.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/data-catalog-api/server/custos-sharing/pom.xml b/data-catalog-api/server/custos-sharing/pom.xml index 7181e95..f26280f 100644 --- a/data-catalog-api/server/custos-sharing/pom.xml +++ b/data-catalog-api/server/custos-sharing/pom.xml @@ -36,16 +36,17 @@ <artifactId>custos-java-sdk</artifactId> <version>1.1-SNAPSHOT</version> <exclusions> - <exclusion> - <groupId>io.grpc</groupId> - <artifactId>grpc-netty</artifactId> - </exclusion> <exclusion> <groupId>io.grpc</groupId> <artifactId>grpc-core</artifactId> </exclusion> </exclusions> </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-core</artifactId> + <version>${grpc.version}</version> + </dependency> </dependencies> </project>
