Commit 3b8a34c5 by Zinovii Dmytriv Committed by apoorvnaik

ATLAS-2919: Fixed issue with Cassandra and Netty

parent f5fd5747
...@@ -97,6 +97,10 @@ ...@@ -97,6 +97,10 @@
<groupId>ch.qos.logback</groupId> <groupId>ch.qos.logback</groupId>
<artifactId>*</artifactId> <artifactId>*</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
</exclusions> </exclusions>
<version>2.1.8</version> <version>2.1.8</version>
</dependency> </dependency>
...@@ -189,6 +193,10 @@ ...@@ -189,6 +193,10 @@
<groupId>io.dropwizard.metrics</groupId> <groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId> <artifactId>metrics-core</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
......
...@@ -76,6 +76,12 @@ ...@@ -76,6 +76,12 @@
<dependency> <dependency>
<groupId>org.apache.atlas</groupId> <groupId>org.apache.atlas</groupId>
<artifactId>atlas-graphdb-impls</artifactId> <artifactId>atlas-graphdb-impls</artifactId>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
</exclusions>
<type>pom</type> <type>pom</type>
</dependency> </dependency>
...@@ -93,6 +99,12 @@ ...@@ -93,6 +99,12 @@
<dependency> <dependency>
<groupId>org.apache.atlas</groupId> <groupId>org.apache.atlas</groupId>
<artifactId>atlas-repository</artifactId> <artifactId>atlas-repository</artifactId>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment