From cd0379a67f86f9171524911405c7dec486ebccd9 Mon Sep 17 00:00:00 2001 From: kyuarl21 Date: Tue, 28 Mar 2023 18:18:34 +0900 Subject: [PATCH] Modified to slf4j2-impl in build.gradle due to slf4j-api versions 1.7 x or earlier issue --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 161fad0e771..3962d828e2e 100644 --- a/build.gradle +++ b/build.gradle @@ -105,7 +105,7 @@ configure([rootProject] + javaProjects) { project -> testRuntimeOnly("org.junit.platform:junit-platform-suite-engine") testRuntimeOnly("org.apache.logging.log4j:log4j-core") testRuntimeOnly("org.apache.logging.log4j:log4j-jul") - testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl") + testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j2-impl") // JSR-305 only used for non-required meta-annotations compileOnly("com.google.code.findbugs:jsr305") testCompileOnly("com.google.code.findbugs:jsr305")