aboutsummaryrefslogtreecommitdiffstats
path: root/integration
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2019-09-19 16:59:21 -0400
committerJim Hahn <jrh3@att.com>2019-09-19 17:02:43 -0400
commitb8c38d101b262b42ce0e1184005ae9493a25ffad (patch)
tree1462361aa153ff0fb602e75e202dab77e540a569 /integration
parent6f8aa8c860497a52fc0b6a164014a964a1acfccb (diff)
Upgrade Jackson version for security
This change upgrades the Jackson version to 2.10.0.pr3, wherever it is referenced, which has a lower level of security vulnerability, 7 as opposed to 10. Change-Id: I346555dee60069b575f0eb86c5ca4be281e84b31 Issue-ID: POLICY-1644 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'integration')
-rw-r--r--integration/pom.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/integration/pom.xml b/integration/pom.xml
index 0a707999..fb4924d3 100644
--- a/integration/pom.xml
+++ b/integration/pom.xml
@@ -39,6 +39,7 @@
<version.dmaap>1.1.9</version.dmaap>
<version.powermock>1.7.4</version.powermock>
<version.eclipselink>2.7.0</version.eclipselink>
+ <version.jackson>2.10.0.pr3</version.jackson>
</properties>
<distributionManagement>
@@ -50,6 +51,38 @@
<dependencyManagement>
<dependencies>
+ <!-- Jackson -->
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <version>${version.jackson}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <version>${version.jackson}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>${version.jackson}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-yaml</artifactId>
+ <version>${version.jackson}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.jaxrs</groupId>
+ <artifactId>jackson-jaxrs-base</artifactId>
+ <version>${version.jackson}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.jaxrs</groupId>
+ <artifactId>jackson-jaxrs-json-provider</artifactId>
+ <version>${version.jackson}</version>
+ </dependency>
+
<!-- MariaDB -->
<dependency>
<groupId>org.mariadb.jdbc</groupId>