aboutsummaryrefslogtreecommitdiffstats
path: root/zkfacade
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2021-03-09 09:36:18 +0100
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2021-03-09 09:45:13 +0100
commitcc1c693c0a99280987e2df24bb12a40b98373db0 (patch)
tree0d9ca8d8dc4ad77cd10d5d8d19c5b9e9ec925896 /zkfacade
parentf60dabeb53bbb6bb3fdcec815799e818c6c1df55 (diff)
Add snappy and metrics-core as compile time dependencies to zkfacade
Zookeeper artifact requires them (both for runtime and to ensure import-package is not generated for packages from those artifacts).
Diffstat (limited to 'zkfacade')
-rw-r--r--zkfacade/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/zkfacade/pom.xml b/zkfacade/pom.xml
index 179856f053f..d9bd377ffa1 100644
--- a/zkfacade/pom.xml
+++ b/zkfacade/pom.xml
@@ -65,6 +65,21 @@
<artifactId>zookeeper</artifactId>
<version>${zookeeper.client.version}</version>
</dependency>
+ <!-- snappy-java and metrics-core are included here
+ to be able to work with ZooKeeper 3.6.2 due to
+ class loading issues -->
+ <dependency>
+ <groupId>io.dropwizard.metrics</groupId>
+ <artifactId>metrics-core</artifactId>
+ <scope>compile</scope>
+ <version>3.2.5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.xerial.snappy</groupId>
+ <artifactId>snappy-java</artifactId>
+ <scope>compile</scope>
+ <version>1.1.7</version>
+ </dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>