summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2015-12-11 00:31:03 +0000
committerJoe Robinson <joe@lc8n.com>2015-12-11 00:31:03 +0000
commit9352a6048cff723220cd022591d93f9ccd2eb814 (patch)
treefe2517eff364f5250e21951dd9fba08ed4d9d7a7 /pom.xml
parent3c9d15ce7de4bb919a1933682ef799c36c40b72d (diff)
Add log4j for logging
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index ec69c63..50b836d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,6 +38,16 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
+ <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-log4j</artifactId>
</dependency>
<!-- Jackson JSON Mapper -->
@@ -46,6 +56,7 @@
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
+
</dependencies>
<build>