Remove exclusion on 'org.apache.logging.log4j:log4j-to-slf4j'.

Add exclusion on 'org.apache.logging.log4j:log4j-core.'

Resolves gh-42.
This commit is contained in:
John Blum
2019-08-19 23:59:17 -07:00
parent c1ca997b56
commit f2a88d7f0b

View File

@@ -6,27 +6,20 @@ dependencies {
compile project(":spring-geode-starter")
compile ("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
compile "org.springframework.boot:spring-boot-starter-web"
// runtime project(":spring-geode-starter-session")
runtime("org.springframework.boot:spring-boot-starter-thymeleaf") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
runtime ("org.springframework.boot:spring-boot-starter-tomcat") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
runtime "org.springframework.boot:spring-boot-starter-thymeleaf"
runtime "org.springframework.boot:spring-boot-starter-tomcat"
testCompile project(":spring-geode-starter-session")
testCompile "org.springframework.data:spring-data-geode-test"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile("org.springframework.data:spring-data-geode-test") {
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}
}