Remove exclusions on 'org.springframework.boot:spring-boot-starter-logging'.

Add exclusion on 'org.apache.logging.log4j:log4j-to-slf4j'.
This commit is contained in:
John Blum
2019-04-29 19:49:36 -07:00
parent 473e31af30
commit f0e8b7964c
7 changed files with 13 additions and 13 deletions

View File

@@ -5,7 +5,7 @@ description = "Spring Boot Starter for Pivotal GemFire"
dependencies { dependencies {
compile("org.springframework.boot:spring-boot-starter") { compile("org.springframework.boot:spring-boot-starter") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
compile(project(':spring-geode')) { compile(project(':spring-geode')) {

View File

@@ -14,7 +14,7 @@ dependencies {
testCompile "edu.umd.cs.mtc:multithreadedtc" testCompile "edu.umd.cs.mtc:multithreadedtc"
testCompile("org.springframework.boot:spring-boot-starter-test") { testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
testCompile "org.springframework.data:spring-data-geode-test" testCompile "org.springframework.data:spring-data-geode-test"

View File

@@ -7,7 +7,7 @@ dependencies {
compile project(":spring-geode") compile project(":spring-geode")
compile ("org.springframework.boot:spring-boot-starter-actuator") { compile ("org.springframework.boot:spring-boot-starter-actuator") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
testCompile "org.assertj:assertj-core" testCompile "org.assertj:assertj-core"
@@ -17,7 +17,7 @@ dependencies {
testCompile "edu.umd.cs.mtc:multithreadedtc" testCompile "edu.umd.cs.mtc:multithreadedtc"
testCompile("org.springframework.boot:spring-boot-starter-test") { testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
testCompile "org.springframework.data:spring-data-geode-test" testCompile "org.springframework.data:spring-data-geode-test"

View File

@@ -24,7 +24,7 @@ dependencies {
testCompile "edu.umd.cs.mtc:multithreadedtc" testCompile "edu.umd.cs.mtc:multithreadedtc"
testCompile("org.springframework.boot:spring-boot-starter-test") { testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
testCompile "org.springframework.data:spring-data-geode-test" testCompile "org.springframework.data:spring-data-geode-test"
@@ -32,17 +32,17 @@ dependencies {
testRuntime "javax.cache:cache-api" testRuntime "javax.cache:cache-api"
testRuntime("org.springframework.boot:spring-boot-starter-web") { testRuntime("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
testRuntime("org.springframework.boot:spring-boot-starter-jetty") { testRuntime("org.springframework.boot:spring-boot-starter-jetty") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
testRuntime "org.springframework.shell:spring-shell:$springShellVersion" testRuntime "org.springframework.shell:spring-shell:$springShellVersion"
// Runtime Test dependency on Spring Cloud Services (SCS) to verify workaround to SCS problem! // Runtime Test dependency on Spring Cloud Services (SCS) to verify workaround to SCS problem!
// testRuntime("io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry:2.0.3.RELEASE") { // testRuntime("io.pivotal.spring.cloud:spring-cloud-services-starter-service-registry:2.0.3.RELEASE") {
// exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" // exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
// } // }
} }

View File

@@ -11,7 +11,7 @@ dependencies {
compile project(":spring-geode-starter-actuator") compile project(":spring-geode-starter-actuator")
compile ("org.springframework.boot:spring-boot-starter-web") { compile ("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
compile "org.springframework.data:spring-data-geode-test" compile "org.springframework.data:spring-data-geode-test"
@@ -19,7 +19,7 @@ dependencies {
runtime "org.springframework.shell:spring-shell" runtime "org.springframework.shell:spring-shell"
runtime ("org.springframework.boot:spring-boot-starter-jetty") { runtime ("org.springframework.boot:spring-boot-starter-jetty") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
} }

View File

@@ -5,7 +5,7 @@ description = "Spring Boot Starter for Apache Geode"
dependencies { dependencies {
compile("org.springframework.boot:spring-boot-starter") { compile("org.springframework.boot:spring-boot-starter") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
compile(project(':spring-geode')) compile(project(':spring-geode'))

View File

@@ -9,7 +9,7 @@ dependencies {
compile "org.springframework.data:spring-data-geode" compile "org.springframework.data:spring-data-geode"
compile("org.springframework.boot:spring-boot-starter") { compile("org.springframework.boot:spring-boot-starter") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
testCompile "org.assertj:assertj-core" testCompile "org.assertj:assertj-core"
@@ -19,7 +19,7 @@ dependencies {
testCompile "edu.umd.cs.mtc:multithreadedtc" testCompile "edu.umd.cs.mtc:multithreadedtc"
testCompile("org.springframework.boot:spring-boot-starter-test") { testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
} }
testCompile "org.springframework.data:spring-data-geode-test" testCompile "org.springframework.data:spring-data-geode-test"