From 49b92dc7a2ed898d2b82730efb3d066cd93b5091 Mon Sep 17 00:00:00 2001
From: Chris Larsen <clarsen@yahoo-inc.com>
Date: Sun, 17 Apr 2016 16:37:47 -0700
Subject: [PATCH] [asynchbase] Fix Netty library version issue that prevents it
 from loading outside the unit tests.

---
 asynchbase/pom.xml | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/asynchbase/pom.xml b/asynchbase/pom.xml
index 4321e730..cf491907 100644
--- a/asynchbase/pom.xml
+++ b/asynchbase/pom.xml
@@ -39,6 +39,34 @@ LICENSE file.
       <scope>provided</scope>
     </dependency>
     
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+      <version>3.4.5</version>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-log4j12</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>jline</groupId>
+          <artifactId>jline</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>junit</groupId>
+          <artifactId>junit</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.netty</groupId>
+          <artifactId>netty</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-- 
GitLab