Skip to content

Commit

Permalink
[asynchbase] Fix Netty library version issue that prevents it from
Browse files Browse the repository at this point in the history
loading outside the unit tests.
  • Loading branch information
manolama committed Apr 17, 2016
1 parent 02d7a4e commit 49b92dc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions asynchbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 49b92dc

Please sign in to comment.