summaryrefslogtreecommitdiffstats
path: root/sliapi/springboot/pom.xml
diff options
context:
space:
mode:
authorSmokowski, Kevin (ks6305) <kevin.smokowski@att.com>2020-03-05 15:30:45 +0000
committerDan Timoney <dtimoney@att.com>2020-03-05 21:03:27 +0000
commitc46ebbb0f011a1587c3fe506c5029ce550b07ed2 (patch)
tree4b6677c045ebfb8c44254c75209f69a8daa444f6 /sliapi/springboot/pom.xml
parent99889c1924876d65cf3402c5ddb299a7e4177aad (diff)
update sliapi-springboot
add sample log4j2 config for spring boot sli api Issue-ID: CCSDK-2161 Signed-off-by: Smokowski, Kevin (ks6305) <kevin.smokowski@att.com> Change-Id: If24315ad6cad1061d1e65e080f4122605b05df47
Diffstat (limited to 'sliapi/springboot/pom.xml')
-rw-r--r--sliapi/springboot/pom.xml21
1 files changed, 20 insertions, 1 deletions
diff --git a/sliapi/springboot/pom.xml b/sliapi/springboot/pom.xml
index dc2c16d6..6bdb1395 100644
--- a/sliapi/springboot/pom.xml
+++ b/sliapi/springboot/pom.xml
@@ -28,7 +28,17 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
- </dependency>
+ <exclusions>
+ <exclusion>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-log4j2</artifactId>
+ </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
@@ -79,6 +89,15 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.onap.logging-analytics</groupId>
+ <artifactId>logging-filter-spring</artifactId>
+ <version>1.6.4</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.ws.rs</groupId>
+ <artifactId>javax.ws.rs-api</artifactId>
+ </dependency>
</dependencies>
<build>