summaryrefslogtreecommitdiffstats
path: root/catalog-dao
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2021-05-31 23:08:39 +0100
committerS�bastien Determe <sebastien.determe@intl.att.com>2021-06-04 16:22:18 +0000
commitc81c95bf4879c805aa91c60653fc0e781ff2d4e9 (patch)
tree480f492a434e1d68ee6faac02063879f62dbc8f8 /catalog-dao
parent58ac206c94352018e6a6cf5da21df4f447e52618 (diff)
Fix dependencies with Critical Violations
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Change-Id: Ic4fb2577c260c80e0204bc68df508f41d9835734 Issue-ID: SDC-3572
Diffstat (limited to 'catalog-dao')
-rw-r--r--catalog-dao/pom.xml43
1 files changed, 36 insertions, 7 deletions
diff --git a/catalog-dao/pom.xml b/catalog-dao/pom.xml
index 8d82dd2ce7..5aaf3a6190 100644
--- a/catalog-dao/pom.xml
+++ b/catalog-dao/pom.xml
@@ -33,6 +33,10 @@ Modifications copyright (c) 2018 Nokia
<version>1.9.0-SNAPSHOT</version>
</parent>
+ <properties>
+ <thrift.version>0.13.0</thrift.version>
+ <cassandra-all.version>3.11.10</cassandra-all.version>
+ </properties>
<dependencies>
<!-- Common of SDC -->
@@ -288,6 +292,14 @@ Modifications copyright (c) 2018 Nokia
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.apache.thrift</groupId>
+ <artifactId>libthrift</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.codehaus.jackson</groupId>
+ <artifactId>jackson-mapper-asl</artifactId>
+ </exclusion>
</exclusions>
</dependency>
@@ -298,6 +310,13 @@ Modifications copyright (c) 2018 Nokia
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.thrift</groupId>
+ <artifactId>libthrift</artifactId>
+ <version>${thrift.version}</version>
+ <scope>test</scope>
+ </dependency>
+
<!-- CASSANDRA -->
<dependency>
<groupId>com.datastax.cassandra</groupId>
@@ -347,7 +366,17 @@ Modifications copyright (c) 2018 Nokia
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
- <version>3.11.3</version>
+ <version>${cassandra-all.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.thrift</groupId>
+ <artifactId>libthrift</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ </exclusion>
+ </exclusions>
<scope>test</scope>
</dependency>
<!-- CASSANDRA END -->
@@ -356,12 +385,12 @@ Modifications copyright (c) 2018 Nokia
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
</dependency>
- <dependency>
- <groupId>org.togglz</groupId>
- <artifactId>togglz-testing</artifactId>
- <version>${togglz.version}</version>
- <scope>test</scope>
- </dependency>
+ <dependency>
+ <groupId>org.togglz</groupId>
+ <artifactId>togglz-testing</artifactId>
+ <version>${togglz.version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>