From fe2e72e551eb46c06bdf826d69f376fe4d5c4b63 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Fri, 29 Sep 2023 23:30:06 +0200 Subject: [PATCH] chore(notifier): Explain why `slf4j-log4j12` is excluded The reason also is in the Git history, but this is more visible. Signed-off-by: Sebastian Schuberth --- notifier/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/notifier/build.gradle.kts b/notifier/build.gradle.kts index 30c8fb04304ab..fa0c167ac5201 100644 --- a/notifier/build.gradle.kts +++ b/notifier/build.gradle.kts @@ -34,6 +34,7 @@ dependencies { implementation(libs.jiraRestClientApi) implementation(libs.jiraRestClientApp) { exclude("org.slf4j", "slf4j-log4j12") + .because("the SLF4J implementation from Log4j 2 is used") } testImplementation(libs.greenmail)