summaryrefslogtreecommitdiffstats
path: root/aai-client-loadbalancer/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'aai-client-loadbalancer/pom.xml')
-rw-r--r--aai-client-loadbalancer/pom.xml23
1 files changed, 17 insertions, 6 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>