Refactor logging dependencies in SBDG Module Gradle build files.
Remove the exclude for 'org.apache.logging.log4j:log4j-to-slf4j'. Add an exclude for 'org.apache.logging.log4j:log4j-core'. Resolves gh-42.
This commit is contained in:
@@ -4,10 +4,21 @@ description = "Apache Geode Extensions"
|
||||
|
||||
dependencies {
|
||||
|
||||
compile "org.apache.geode:geode-core:$apacheGeodeVersion"
|
||||
compile "org.apache.geode:geode-cq:$apacheGeodeVersion"
|
||||
compile "org.apache.geode:geode-lucene:$apacheGeodeVersion"
|
||||
compile "org.apache.geode:geode-wan:$apacheGeodeVersion"
|
||||
compile("org.apache.geode:geode-core:$apacheGeodeVersion") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
||||
}
|
||||
|
||||
compile("org.apache.geode:geode-cq:$apacheGeodeVersion") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
||||
}
|
||||
|
||||
compile("org.apache.geode:geode-lucene:$apacheGeodeVersion") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
||||
}
|
||||
|
||||
compile("org.apache.geode:geode-wan:$apacheGeodeVersion") {
|
||||
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
||||
}
|
||||
|
||||
testCompile "org.assertj:assertj-core"
|
||||
testCompile "junit:junit"
|
||||
|
||||
Reference in New Issue
Block a user