diff options
author | NicolasLAplaud <nicolas.laplaud@orange.com> | 2018-04-11 15:20:17 +0200 |
---|---|---|
committer | NicolasLaplaud <nicolas.laplaud@orange.com> | 2018-04-11 15:58:40 +0200 |
commit | 5f0a862b0330c6410f4489714645d4141cf91147 (patch) | |
tree | 8b2552269b35526958decd999667122c24143362 /pom.xml | |
parent | bebc9bf71e5e7a33693cbaef9400e38b6a9aba4d (diff) |
Fix vulnerability report part1
- Add a dependency exclusion
Change-Id: Ifb3e3f5f78c6f9c9b0bcdd8238a047caf235f6e1
Issue-ID: EXTAPI-52
Signed-off-by: NicolasLAplaud <nicolas.laplaud@orange.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -18,7 +18,7 @@ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.onap.externalapi-nbi</groupId> @@ -156,6 +156,12 @@ <groupId>com.bazaarvoice.jolt</groupId> <artifactId>jolt-core</artifactId> <version>0.1.0</version> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -345,4 +351,4 @@ </profile> </profiles> -</project> +</project>
\ No newline at end of file |