Add exclusions on Spring Boot Starter Logging.

This commit is contained in:
John Blum
2018-08-28 17:13:17 -07:00
parent 03d48cc437
commit f99d16364c
2 changed files with 9 additions and 1 deletions

View File

@@ -12,6 +12,8 @@ dependencies {
compile "org.springframework:spring-test"
compile "org.springframework.data:spring-data-geode"
provided "org.springframework.boot:spring-boot-starter"
provided ("org.springframework.boot:spring-boot-starter") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging";
}
}

View File

@@ -75,6 +75,12 @@
<artifactId>spring-boot-starter</artifactId>
<optional>true</optional>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>