From 62b7b4f840e7e224f947f1745da375df6f419b9b Mon Sep 17 00:00:00 2001 From: Aniruddh <63553175+Noir01@users.noreply.github.com> Date: Thu, 2 Nov 2023 01:48:38 -0400 Subject: [PATCH] Added org.apache.logging.log4j:log4j-slf4j-impl to classpath (#791) * Added slf4j-jdk14.jar to classpath Adding binding for SLF4J that should fix StaticLoggerBinder being not loaded. Followed instructions from warning messages that appear. Signed-off-by: Noir <63553175+Noir01@users.noreply.github.com> * Undid 80fc198af89a44e90406c8de8245c94ab5a8f3d7 Removed slf4j-jdk14.jar from classpath Signed-off-by: Aniruddh <63553175+Noir01@users.noreply.github.com> * Added org.apache.logging.log4j:log4j-slf4j-impl to classpath Signed-off-by: Aniruddh <63553175+Noir01@users.noreply.github.com> --------- Signed-off-by: Noir <63553175+Noir01@users.noreply.github.com> Signed-off-by: Aniruddh <63553175+Noir01@users.noreply.github.com> --- notifications/core/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/notifications/core/build.gradle b/notifications/core/build.gradle index 1cef6633..f64402cf 100644 --- a/notifications/core/build.gradle +++ b/notifications/core/build.gradle @@ -144,6 +144,7 @@ dependencies { implementation "com.sun.mail:javax.mail:1.6.2" implementation "javax.activation:activation:1.1" implementation "org.slf4j:slf4j-api:${versions.slf4j}" //Needed for httpclient5 + implementation "org.apache.logging.log4j:log4j-slf4j-impl:${versions.log4j}" testImplementation( 'org.assertj:assertj-core:3.16.1', 'org.junit.jupiter:junit-jupiter-api:5.6.2',