Add exclusions on Spring Boot Starter Logging.
This commit is contained in:
@@ -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";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user