You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by nk...@apache.org on 2013/04/03 16:27:16 UTC

svn commit: r1464040 - /hbase/branches/0.95/pom.xml

Author: nkeywal
Date: Wed Apr  3 14:27:16 2013
New Revision: 1464040

URL: http://svn.apache.org/r1464040
Log:
HBASE-8241 Fix the bad dependency on netty from HDFS

Modified:
    hbase/branches/0.95/pom.xml

Modified: hbase/branches/0.95/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.95/pom.xml?rev=1464040&r1=1464039&r2=1464040&view=diff
==============================================================================
--- hbase/branches/0.95/pom.xml (original)
+++ hbase/branches/0.95/pom.xml Wed Apr  3 14:27:16 2013
@@ -1341,6 +1341,13 @@
             <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-client</artifactId>
             <version>${hadoop-two.version}</version>
+            <exclusions>
+              <exclusion>
+                <!-- We use a newer version of netty -->
+                <groupId>org.jboss.netty</groupId>
+                <artifactId>netty</artifactId>
+              </exclusion>
+            </exclusions>
           </dependency>
           <dependency>
             <groupId>org.apache.hadoop</groupId>
@@ -1353,6 +1360,13 @@
             <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-minicluster</artifactId>
             <version>${hadoop-two.version}</version>
+            <exclusions>
+              <exclusion>
+                <!-- We use a newer version of netty -->
+                <groupId>org.jboss.netty</groupId>
+                <artifactId>netty</artifactId>
+              </exclusion>
+            </exclusions>
           </dependency>
         </dependencies>
       </dependencyManagement>