You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by mb...@apache.org on 2012/07/14 00:43:10 UTC

svn commit: r1361433 - /hbase/branches/0.89-fb/pom.xml

Author: mbautin
Date: Fri Jul 13 22:43:10 2012
New Revision: 1361433

URL: http://svn.apache.org/viewvc?rev=1361433&view=rev
Log:
[master] Fix map-reduce-related HBase tests

Author: mbautin

Summary: Map-reduce tests in HBase appear to be failing since the upgrade to the Alligator Hadoop branch because of Corona's dependency on Netty. Since we install the Hadoop jar into Maven in a hacky way and don't add all proper dependencies from ivy, the simplest thing to do seems to be to add Netty as a dependency to HBase directly.

Test Plan: Run unit tests on map-reduce

Reviewers: pritam, liyintang

Reviewed By: pritam

CC: hbase-eng@

Differential Revision: https://phabricator.fb.com/D519424

Task ID: 774638

Modified:
    hbase/branches/0.89-fb/pom.xml

Modified: hbase/branches/0.89-fb/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.89-fb/pom.xml?rev=1361433&r1=1361432&r2=1361433&view=diff
==============================================================================
--- hbase/branches/0.89-fb/pom.xml (original)
+++ hbase/branches/0.89-fb/pom.xml Fri Jul 13 22:43:10 2012
@@ -475,6 +475,7 @@
     <commons-logging.version>1.1.1</commons-logging.version>
     <jetty.version>6.1.24</jetty.version>
     <jetty.jspapi.version>6.1.14</jetty.jspapi.version>
+    <netty.version>3.2.2.Final</netty.version>
     <junit.version>4.8.1</junit.version>
     <mockito-all.version>1.8.4</mockito-all.version>
     <log4j.version>1.2.15</log4j.version>
@@ -689,6 +690,11 @@
       <version>${jetty.jspapi.version}</version>
     </dependency>
     <dependency>
+      <groupId>org.jboss.netty</groupId>
+      <artifactId>netty</artifactId>
+      <version>${netty.version}</version>
+    </dependency>
+    <dependency>
       <groupId>tomcat</groupId>
       <artifactId>jasper-runtime</artifactId>
       <version>${jasper.version}</version>