summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKajur, Harish (vk250x) <vk250x@att.com>2018-04-18 11:40:45 -0400
committerKajur, Harish (vk250x) <vk250x@att.com>2018-04-18 11:53:45 -0400
commit235f7eb30eb3eea9bf9e56e0e4bc2bee458abbd4 (patch)
treefbc14b36d5c0d65de94c4e995da82b9eb3369a43
parent4f0e505712345f197efa693c17069d2a053f2791 (diff)
Update the pom to use the spring boot 1.5.12
Issue-ID: AAI-1036 Issue-ID: AAI-968 Issue-ID: AAI-975 Change-Id: Iad8ad4f6e5f71c969b99356b7c909dc585e97a98 Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
-rw-r--r--aai-client-loadbalancer/pom.xml23
-rw-r--r--aai-core/pom.xml4
-rw-r--r--aai-schema-ingest/pom.xml4
-rw-r--r--aai-utils/pom.xml16
4 files changed, 37 insertions, 10 deletions
diff --git a/aai-client-loadbalancer/pom.xml b/aai-client-loadbalancer/pom.xml
index 58454d6c..6279eb34 100644
--- a/aai-client-loadbalancer/pom.xml
+++ b/aai-client-loadbalancer/pom.xml
@@ -49,6 +49,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
+ <logback.version>1.2.3</logback.version>
</properties>
<dependencies>
@@ -63,7 +64,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
- <version>1.5.2.RELEASE</version>
+ <version>1.5.12.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
@@ -77,15 +78,25 @@
<version>1.0.0</version>
</dependency>
<dependency>
- <groupId>org.springframework.retry</groupId>
- <artifactId>spring-retry</artifactId>
- <version>1.2.1.RELEASE</version>
- </dependency>
- <dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>4.0.29.Final</version>
</dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <version>${logback.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>${logback.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-access</artifactId>
+ <version>${logback.version}</version>
+ </dependency>
</dependencies>
<dependencyManagement>
diff --git a/aai-core/pom.xml b/aai-core/pom.xml
index 67fafa42..6d6814f7 100644
--- a/aai-core/pom.xml
+++ b/aai-core/pom.xml
@@ -445,7 +445,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
- <version>4.2.5.RELEASE</version>
+ <version>4.3.16.RELEASE</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
@@ -633,7 +633,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
- <version>4.3.2.RELEASE</version>
+ <version>4.3.16.RELEASE</version>
</dependency>
</dependencies>
diff --git a/aai-schema-ingest/pom.xml b/aai-schema-ingest/pom.xml
index 3f896382..d5ea87e3 100644
--- a/aai-schema-ingest/pom.xml
+++ b/aai-schema-ingest/pom.xml
@@ -55,12 +55,12 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
- <version>4.3.6.RELEASE</version>
+ <version>4.3.16.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
- <version>4.3.6.RELEASE</version>
+ <version>4.3.16.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
diff --git a/aai-utils/pom.xml b/aai-utils/pom.xml
index c44227a9..0afd77b9 100644
--- a/aai-utils/pom.xml
+++ b/aai-utils/pom.xml
@@ -37,6 +37,7 @@
<properties>
<onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
+ <logback.version>1.2.3</logback.version>
</properties>
<dependencies>
@@ -91,6 +92,21 @@
<version>4.11</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <version>${logback.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>${logback.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-access</artifactId>
+ <version>${logback.version}</version>
+ </dependency>
</dependencies>
<build>