Forcing log4j 2.15.0

This commit is contained in:
Surendra Singh 2021-12-11 01:50:48 +05:30
parent 4bd8413666
commit 9a16fbe907

View File

@ -13,13 +13,18 @@ repositories {
}
dependencies {
implementation('org.apache.logging.log4j:log4j-api:2.15.0') {
force true
}
implementation('org.apache.logging.log4j:log4j-core:2.15.0') {
force true
}
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
implementation 'org.springframework.boot:spring-boot-starter-log4j2:2.6.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}