aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaMont, William (wl2432) <wl2432@att.com>2018-09-19 17:22:35 -0400
committerLaMont, William (wl2432) <wl2432@att.com>2018-09-19 17:27:56 -0400
commitdd8930e003903a0622fa3e52e41fa37998f1d03a (patch)
tree51754cfa0eafda4e8026caf32edd8b3436c37fa8
parentde5ef94b2f56d8af80d822ca9815fc40bdbbb83e (diff)
update to fix for merge build and vulnerabilities
Issue-ID: AAI-1636 Change-Id: I085fd76e96dec51fbe1a3622a052a5f775a99813 Signed-off-by: LaMont, William (wl2432) <wl2432@att.com>
-rw-r--r--pom.xml21
1 files changed, 19 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 7ff4efd..0855f64 100644
--- a/pom.xml
+++ b/pom.xml
@@ -83,7 +83,7 @@
<!-- End of the jacoco plugin properties -->
<json.version>20090211</json.version>
- <logback.version>1.1.7</logback.version>
+ <logback.version>1.2.3</logback.version>
<eelf.core.version>1.0.0</eelf.core.version>
<mockito.version>1.10.19</mockito.version>
<json.assert.version>1.5.0</json.assert.version>
@@ -238,7 +238,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
- <version>4.5.1</version>
+ <version>4.5.6</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
@@ -249,8 +249,19 @@
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo</artifactId>
<version>2.0.3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-compress</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-compress</artifactId>
+ <version>1.18</version>
+ </dependency>
+ <dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver</artifactId>
<version>3.6.2</version>
@@ -506,6 +517,12 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
+ <!--
+ Issue with the spring 1.5.15.RELEASE plugin is causing build errors
+ due to the fact that the plugin 1.5.15.RELEASE was built using maven 3.5 while
+ the current build version being used by our jenkins is 3.3.9
+ -->
+ <version>1.5.12.RELEASE</version>
<configuration>
<mainClass>${start-class}</mainClass>
<layout>ZIP</layout>