This is an automated email from the ASF dual-hosted git repository. pinal pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new 75053b58c ATLAS-4809 : Exclude amqp-client from janusgraph-core 75053b58c is described below commit 75053b58cc92b9e620bfb7d55e92a6830a916032 Author: sheetal.shah <sheetal.s...@cloudera.com> AuthorDate: Wed Nov 8 13:15:09 2023 +0530 ATLAS-4809 : Exclude amqp-client from janusgraph-core Signed-off-by: Pinal Shah <pinal.s...@freestoneinfotech.com> --- graphdb/janus-hbase2/pom.xml | 4 ++++ tools/atlas-index-repair/pom.xml | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/graphdb/janus-hbase2/pom.xml b/graphdb/janus-hbase2/pom.xml index 3bf176fc5..b2af8a194 100644 --- a/graphdb/janus-hbase2/pom.xml +++ b/graphdb/janus-hbase2/pom.xml @@ -76,6 +76,10 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> </exclusion> + <exclusion> + <groupId>com.rabbitmq</groupId> + <artifactId>amqp-client</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/tools/atlas-index-repair/pom.xml b/tools/atlas-index-repair/pom.xml index 8a0e39aa3..bf1eb3214 100644 --- a/tools/atlas-index-repair/pom.xml +++ b/tools/atlas-index-repair/pom.xml @@ -54,6 +54,12 @@ <groupId>org.janusgraph</groupId> <artifactId>janusgraph-core</artifactId> <version>${janusgraph.version}</version> + <exclusions> + <exclusion> + <groupId>com.rabbitmq</groupId> + <artifactId>amqp-client</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies>