From 8ee97ee141ed06185fbe5526fb6dc1637ded93cf Mon Sep 17 00:00:00 2001 From: Lucas Wang Date: Wed, 1 May 2024 16:11:22 -0700 Subject: [PATCH] [LI-HOTFIX] Exclude logback the assumption we make is that log4j will be used TICKET = N/A LI_DESCRIPTION = Exclude logback the assumption we make is that log4j will be used EXIT_CRITERIA = N/A --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index b3b610d5c4c6f..d1fa7fe44f164 100644 --- a/build.gradle +++ b/build.gradle @@ -883,6 +883,7 @@ project(':core') { implementation libs.dropwizardMetrics exclude module: 'slf4j-log4j12' exclude module: 'log4j' + exclude group: 'ch.qos.logback', module: 'logback-classic' } // ZooKeeperMain depends on commons-cli but declares the dependency as `provided` implementation libs.commonsCli