aboutsummaryrefslogtreecommitdiffstats
path: root/zookeeper-client-common/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'zookeeper-client-common/pom.xml')
-rw-r--r--zookeeper-client-common/pom.xml15
1 files changed, 13 insertions, 2 deletions
diff --git a/zookeeper-client-common/pom.xml b/zookeeper-client-common/pom.xml
index 12ff1517e53..b425dfddaf9 100644
--- a/zookeeper-client-common/pom.xml
+++ b/zookeeper-client-common/pom.xml
@@ -20,13 +20,24 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
+
+ <!-- compile scope -->
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
- <scope>provided</scope>
+ <scope>compile</scope>
+ <exclusions>
+ <!--
+ Container provides wiring for all common log libraries
+ Duplicate embedding results in various warnings being printed to stderr
+ -->
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
- <!-- compile scope -->
<!-- test scope -->
<dependency>
<groupId>org.junit.jupiter</groupId>