Refactor logging dependencies for SBDG Starters Gradle build files.
Remove the exclude on 'org.apache.logging.log4j:log4j-to-slf4j'. Add an exclude on 'org.apache.logging.log4j:log4j-core'. Resolves gh-42.
This commit is contained in:
@@ -5,12 +5,12 @@ description = "Spring Boot Test Starter for Pivotal GemFire"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile("org.springframework.boot:spring-boot-starter-test") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
|
||||
}
|
||||
compile "org.springframework.boot:spring-boot-starter-test"
|
||||
|
||||
compile(project(':spring-gemfire-starter'));
|
||||
|
||||
testCompile "org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion"
|
||||
testCompile("org.springframework.data:spring-data-gemfire-test:$springDataGeodeTestVersion") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user