summaryrefslogtreecommitdiffstats
path: root/zookeeper-client-common
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-12-20 23:00:18 +0100
committergjoranv <gv@verizonmedia.com>2021-12-20 23:00:59 +0100
commit598c8c48ac61517687b7245aa0f13da60fb69593 (patch)
tree7d6ec6ec3cc84085bebbe9389aa731b17bbe0f2e /zookeeper-client-common
parentdb9b6ba8774d5377277fdc93a01e8e7891c0b692 (diff)
Exclude log4j deps from zookeeper-client-common.
- It has no other effect than modifying the test classpath, because zookeeper is a provided scope dep here.
Diffstat (limited to 'zookeeper-client-common')
-rw-r--r--zookeeper-client-common/pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/zookeeper-client-common/pom.xml b/zookeeper-client-common/pom.xml
index f991fa5dea9..7e23e0cb1c8 100644
--- a/zookeeper-client-common/pom.xml
+++ b/zookeeper-client-common/pom.xml
@@ -25,6 +25,16 @@
<artifactId>zookeeper</artifactId>
<version>${zookeeper.client.version}</version>
<scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- compile scope -->