summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2015-12-11 01:09:46 +0000
committerJoe Robinson <joe@lc8n.com>2015-12-11 01:09:46 +0000
commitc77d5eb77aaaefcc957f08d97d61fcfc3baa5b45 (patch)
tree6add4bfae58c9c971143cb4915d8329c7406d149 /pom.xml
parentfa6a727ce3b58ce8f1f853da0083903c71885154 (diff)
parent3b649e6855ea849808473349f8213f1304f0c92a (diff)
Merge branch 'master' into readme
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 21 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index ec69c63..6c169be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,11 +33,30 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
-
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter</artifactId>
+ <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-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 +65,7 @@
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
+
</dependencies>
<build>