Fixup Gradle build file to properly exclude the 'org.apache.logging.log4j:log4j-core' dependency transitively pulled in by the 'org.springframework.data:spring-data-geode-test' dependency.

Remove the exlusion on 'org.apache.logging.log4j:log4j-to-slf4j' in the 'org.springframework.boot:spring-boot-starter-test' dependency.

Resolves gh-42.
This commit is contained in:
John Blum
2019-08-05 13:12:17 -07:00
parent 1e0a3bacfd
commit de8791564f

View File

@@ -12,17 +12,14 @@ dependencies {
compile project(":spring-geode-starter")
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
compile("org.springframework.data:spring-data-geode-test") {
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}
compile "org.assertj:assertj-core"
compile "org.projectlombok:lombok"
compile "org.springframework.data:spring-data-geode-test"
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile "org.springframework.boot:spring-boot-starter-test"
}