This is an automated email from the ASF dual-hosted git repository.
smolnar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git
The following commit(s) were added to refs/heads/master by this push:
new e1d9bb729 KNOX-3011 - Excluded logback-[core|classic] as transitive
dependencies pulled in by Zookeeper (#861)
e1d9bb729 is described below
commit e1d9bb729af006f45e70311ac5746277fe03760f
Author: Sandor Molnar <[email protected]>
AuthorDate: Tue Feb 27 12:44:46 2024 +0100
KNOX-3011 - Excluded logback-[core|classic] as transitive dependencies
pulled in by Zookeeper (#861)
---
pom.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/pom.xml b/pom.xml
index cf5fc5570..823614743 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2084,6 +2084,14 @@
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>