Refactor dependencies and ensure the log4j-to-slf4j dependency gets excluded.

Remove testCompile slf4j dependencies.
This commit is contained in:
John Blum
2018-09-19 10:28:33 -07:00
parent a8318d759c
commit 2ce660c421
4 changed files with 5 additions and 6 deletions

View File

@@ -6,7 +6,9 @@ dependencies {
compile project(":spring-geode")
compile 'org.springframework.boot:spring-boot-starter-actuator'
compile ("org.springframework.boot:spring-boot-starter-actuator") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
testCompile "org.assertj:assertj-core"
testCompile "junit:junit"
@@ -19,6 +21,5 @@ dependencies {
}
testCompile "org.springframework.data:spring-data-geode-test"
testCompile slf4jDependencies
}