You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by co...@apache.org on 2023/03/23 11:30:40 UTC

[directory-kerby] branch coheigea/fix-build-after-zookeeper-3.6-upgrade created (now f5c6cccd)

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a change to branch coheigea/fix-build-after-zookeeper-3.6-upgrade
in repository https://gitbox.apache.org/repos/asf/directory-kerby.git


      at f5c6cccd Fixing build after Zookeeper 3.6.x dependabot upgrade

This branch includes the following new commits:

     new f5c6cccd Fixing build after Zookeeper 3.6.x dependabot upgrade

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[directory-kerby] 01/01: Fixing build after Zookeeper 3.6.x dependabot upgrade

Posted by co...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch coheigea/fix-build-after-zookeeper-3.6-upgrade
in repository https://gitbox.apache.org/repos/asf/directory-kerby.git

commit f5c6cccd040bebcee137b8bcc626180f2398f9d9
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Thu Mar 23 11:30:15 2023 +0000

    Fixing build after Zookeeper 3.6.x dependabot upgrade
---
 kerby-backend/zookeeper-backend/pom.xml | 10 ++++++++++
 pom.xml                                 |  2 ++
 2 files changed, 12 insertions(+)

diff --git a/kerby-backend/zookeeper-backend/pom.xml b/kerby-backend/zookeeper-backend/pom.xml
index 13320890..6eb9dd94 100644
--- a/kerby-backend/zookeeper-backend/pom.xml
+++ b/kerby-backend/zookeeper-backend/pom.xml
@@ -42,6 +42,16 @@
       <artifactId>zookeeper</artifactId>
       <version>${zookeeper.version}</version>
     </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+      <version>${snappy.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+      <version>${dropwizard.version}</version>
+    </dependency>
     <dependency>
       <groupId>org.apache.kerby</groupId>
       <artifactId>kerb-identity-test</artifactId>
diff --git a/pom.xml b/pom.xml
index a482b9c7..df062361 100644
--- a/pom.xml
+++ b/pom.xml
@@ -76,6 +76,8 @@
     <commons-logging.version>1.2</commons-logging.version>
     <ini4j.version>0.5.4</ini4j.version>
     <targetJdk.version>1.8</targetJdk.version>
+    <dropwizard.version>3.2.5</dropwizard.version>
+    <snappy.version>1.1.8.4</snappy.version>
     <zookeeper.version>3.6.4</zookeeper.version>
     <xnio-api.version>3.8.8.Final</xnio-api.version>
   </properties>