Remove exclude from Apache Geode dependencies on 'org.apache.logging.log4j:log4j-core'.

Resolves gh-48.
This commit is contained in:
John Blum
2020-09-18 02:06:27 -07:00
parent 74c4bdbcd9
commit 2aaaea76bf
8 changed files with 20 additions and 56 deletions

View File

@@ -4,31 +4,20 @@ description = "Apache Geode Extensions"
dependencies {
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"
}
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 "com.fasterxml.jackson.core:jackson-databind"
testCompile "org.apache.geode:geode-membership:$apacheGeodeVersion"
testCompile "org.apache.geode:geode-serialization:$apacheGeodeVersion"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
testCompile "org.mockito:mockito-core"
testCompile "org.projectlombok:lombok"
testCompile "edu.umd.cs.mtc:multithreadedtc"
testCompile "org.apache.geode:geode-membership:$apacheGeodeVersion"
testCompile "org.apache.geode:geode-serialization:$apacheGeodeVersion"
}