diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-07-20 23:22:45 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2021-07-21 23:37:28 +0000 |
commit | 66af7c5df813bc779ae088c588bfab2cd9cdd74c (patch) | |
tree | 93e1c2731122406a47332c4d341290b83b96937c /catalog-fe | |
parent | 0514ec6635a08cdbaac5d664c3a4f13bcb0cbf51 (diff) |
Remove dependency vulnerability
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Ia703de3d5bad1780e63be401ce0b435cb665f505
Issue-ID: SDC-3572
Diffstat (limited to 'catalog-fe')
-rw-r--r-- | catalog-fe/pom.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/catalog-fe/pom.xml b/catalog-fe/pom.xml index 3eb2b7d43c..5e950a0b40 100644 --- a/catalog-fe/pom.xml +++ b/catalog-fe/pom.xml @@ -261,7 +261,7 @@ <scope>compile</scope> </dependency> <dependency> - <groupId>org.hibernate</groupId> + <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> <version>${hibernate.validator.version}</version> </dependency> @@ -270,7 +270,7 @@ <dependency> <groupId>org.owasp.esapi</groupId> <artifactId>esapi</artifactId> - <version>2.2.0.0</version> + <version>${org.owasp.esapi.version}</version> <exclusions> <exclusion> <groupId>log4j</groupId> @@ -380,7 +380,18 @@ <artifactId>jetty-http</artifactId> <version>${jetty.version}</version> </dependency> + <dependency> + <groupId>javax.ws.rs</groupId> + <artifactId>javax.ws.rs-api</artifactId> + <version>${ws.rs.version}</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>javax.validation</groupId> + <artifactId>validation-api</artifactId> + <version>${javax.validation.version}</version> + </dependency> </dependencies> <build> |