diff options
| author | Joe Robinson <joe@lc8n.com> | 2015-12-11 00:43:41 +0000 |
|---|---|---|
| committer | Joe Robinson <joe@lc8n.com> | 2015-12-11 00:43:41 +0000 |
| commit | 71c4e0a0ca19e5437c382a970d96fb94c6c9abca (patch) | |
| tree | fa40b1be4c11a3d459eefb1d65479b8d8bb174f6 | |
| parent | 9352a6048cff723220cd022591d93f9ccd2eb814 (diff) | |
Fixes for log4j
| -rw-r--r-- | pom.xml | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -33,7 +33,16 @@ <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> |
