You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by tr...@apache.org on 2012/09/12 17:42:32 UTC

svn commit: r1384048 - in /incubator/hcatalog/trunk: CHANGES.txt storage-handlers/hbase/pom.xml

Author: travis
Date: Wed Sep 12 17:42:31 2012
New Revision: 1384048

URL: http://svn.apache.org/viewvc?rev=1384048&view=rev
Log:
HCATALOG-501 HBase storage handler tests failing in trunk

Modified:
    incubator/hcatalog/trunk/CHANGES.txt
    incubator/hcatalog/trunk/storage-handlers/hbase/pom.xml

Modified: incubator/hcatalog/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1384048&r1=1384047&r2=1384048&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Wed Sep 12 17:42:31 2012
@@ -107,6 +107,8 @@ Trunk (unreleased changes)
   OPTIMIZATIONS
 
   BUG FIXES
+  HCAT-501 HBase storage handler tests failing in trunk (traviscrawford)
+
   HCAT-498 TestNotificationListener failing in trunk (traviscrawford)
 
   HCAT-397 Removal of unused parameter hadoop.clientside.fs.operations (khorgath via traviscrawford)

Modified: incubator/hcatalog/trunk/storage-handlers/hbase/pom.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/storage-handlers/hbase/pom.xml?rev=1384048&r1=1384047&r2=1384048&view=diff
==============================================================================
--- incubator/hcatalog/trunk/storage-handlers/hbase/pom.xml (original)
+++ incubator/hcatalog/trunk/storage-handlers/hbase/pom.xml Wed Sep 12 17:42:31 2012
@@ -23,6 +23,12 @@
       <artifactId>hbase</artifactId>
       <version>${hbase.version}</version>
       <scope>compile</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>com.google.guava</groupId>
+          <artifactId>guava</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.hcatalog</groupId>
@@ -62,6 +68,12 @@
       <version>${hbase.version}</version>
       <classifier>tests</classifier>
       <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>com.google.guava</groupId>
+          <artifactId>guava</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.zookeeper</groupId>