diff options
author | romaingimbert <romain.gimbert@orange.com> | 2018-09-05 10:28:44 +0200 |
---|---|---|
committer | romaingimbert <romain.gimbert@orange.com> | 2018-09-05 10:28:44 +0200 |
commit | ddeba2f466751a23cbbf6dc07b1b415231a39a5d (patch) | |
tree | 74b05db744222a1169d6423df99d905f9f99aa12 /pom.xml | |
parent | 93e9e5a072e0cb5e15ca1b96594e9d8ffb63819e (diff) |
Fix critical security issues
-change pom dependencies version
Change-Id: Ib378ac1d8a05345494dcda0299dd5715b04de14e
Issue-ID: EXTAPI-126
Signed-off-by: romaingimbert <romain.gimbert@orange.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 26 |
1 files changed, 25 insertions, 1 deletions
@@ -121,6 +121,12 @@ </dependency> <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.8.11.2</version> + </dependency> + + <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> <version>8.5.32</version> @@ -163,7 +169,7 @@ <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> - <version>1.7.0</version> + <version>1.9.3</version> </dependency> <dependency> @@ -227,6 +233,12 @@ <groupId>com.bazaarvoice.jolt</groupId> <artifactId>json-utils</artifactId> <version>0.1.0</version> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> <!-- test --> @@ -259,6 +271,12 @@ <artifactId>spring-cloud-contract-wiremock</artifactId> <version>1.0.0.RELEASE</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -293,6 +311,12 @@ <groupId>org.onap.msb.java-sdk</groupId> <artifactId>msb-java-sdk</artifactId> <version>1.1.1</version> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> |