summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolasLaplaud <nicolas.laplaud@orange.com>2018-04-13 11:03:23 +0200
committerNicolasLaplaud <nicolas.laplaud@orange.com>2018-04-13 11:03:23 +0200
commit33fc4d316d24a028e968a6f28fc2ead595056349 (patch)
treece040423d4eaa39a7172ac6ffe40f6fdd61cd0fd
parent217e78bca57def33fadf4316b53323dc4cabdd9b (diff)
Fix vulnerability report
- Exclude old logback-classic from spring-boot-starter-web - Add the latest logback-classic release version Change-Id: I6c6c35ed9ba2e7d8f0176fe086fda4a42576e4bd Issue-ID: EXTAPI-71 Signed-off-by: NicolasLaplaud <nicolas.laplaud@orange.com>
-rw-r--r--pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 505777a..50e3c21 100644
--- a/pom.xml
+++ b/pom.xml
@@ -105,6 +105,18 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>1.2.3</version>
</dependency>
<dependency>