@@ -61,6 +61,13 @@ configurations {
6161 smokeTestRuntimeOnly. extendsFrom runtimeOnly
6262}
6363
64+ // configurations.all {
65+ // resolutionStrategy.dependencySubstitution {
66+ // substitute module("ch.qos.logback:logback-classic:1.2.12") with project('ch.qos.logback:logback-classic:1.3.14')
67+ // substitute module("ch.qos.logback:logback-core:1.2.12") with project('ch.qos.logback:logback-core:1.3.14')
68+ // }
69+ // }
70+
6471tasks. withType(JavaCompile ) {
6572 options. compilerArgs << " -Xlint:unchecked" << " -Werror"
6673}
@@ -181,6 +188,7 @@ dependencies {
181188
182189 implementation(" org.springframework.cloud:spring-cloud-starter-bootstrap" )
183190 implementation group : ' org.springframework.boot' , name : ' spring-boot-starter-actuator'
191+
184192 implementation group : ' org.springframework.boot' , name : ' spring-boot-starter-aop'
185193 implementation group : ' org.springframework.boot' , name : ' spring-boot-starter-json'
186194 implementation group : ' org.springframework' , name : ' spring-context-support'
@@ -266,8 +274,9 @@ wrapper {
266274
267275configurations. all {
268276 exclude group : ' org.bouncycastle' , module : ' bcprov-jdk15on'
269- exclude group : ' org.springframework.boot' , module : ' spring-boot-starter-security '
277+ exclude group : ' org.springframework.boot' , module : ' spring-boot-starter-logging '
270278 exclude group : ' org.springframework.security' , module : ' spring-security-rsa'
279+ exclude group : ' ch.qos.logback' , module : ' logback-classic'
271280}
272281
273282test {
0 commit comments