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:
@@ -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"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user