diff --git a/build.gradle b/build.gradle index 81576d1..23ac4e6 100644 --- a/build.gradle +++ b/build.gradle @@ -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() }