diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-05-31 23:08:39 +0100 |
---|---|---|
committer | S�bastien Determe <sebastien.determe@intl.att.com> | 2021-06-04 16:22:18 +0000 |
commit | c81c95bf4879c805aa91c60653fc0e781ff2d4e9 (patch) | |
tree | 480f492a434e1d68ee6faac02063879f62dbc8f8 /catalog-model/pom.xml | |
parent | 58ac206c94352018e6a6cf5da21df4f447e52618 (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-model/pom.xml')
-rw-r--r-- | catalog-model/pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/catalog-model/pom.xml b/catalog-model/pom.xml index fc55fb771c..c71ea9e883 100644 --- a/catalog-model/pom.xml +++ b/catalog-model/pom.xml @@ -125,7 +125,7 @@ <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> - <version>5.3.6.Final</version> + <version>${hibernate.validator.version}</version> </dependency> <!-- Gson --> @@ -183,6 +183,14 @@ <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </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> @@ -368,6 +376,12 @@ <groupId>com.googlecode.jmapper-framework</groupId> <artifactId>jmapper-core</artifactId> <version>${jMapper.version}</version> + <exclusions> + <exclusion> + <groupId>com.thoughtworks.xstream</groupId> + <artifactId>xstream</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> |