You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by gu...@apache.org on 2014/08/05 04:24:21 UTC

svn commit: r1615843 - /hive/branches/cbo/ql/pom.xml

Author: gunther
Date: Tue Aug  5 02:24:21 2014
New Revision: 1615843

URL: http://svn.apache.org/r1615843
Log:
HIVE-7611: Workaround for pom issue with optiq-avatica (Gunther Hagleitner)

Modified:
    hive/branches/cbo/ql/pom.xml

Modified: hive/branches/cbo/ql/pom.xml
URL: http://svn.apache.org/viewvc/hive/branches/cbo/ql/pom.xml?rev=1615843&r1=1615842&r2=1615843&view=diff
==============================================================================
--- hive/branches/cbo/ql/pom.xml (original)
+++ hive/branches/cbo/ql/pom.xml Tue Aug  5 02:24:21 2014
@@ -201,6 +201,24 @@
       </exclusions>
     </dependency>   
     <dependency>
+      <groupId>org.apache.optiq</groupId>
+      <artifactId>optiq-avatica</artifactId>
+      <version>${optiq.version}</version>
+      <exclusions>
+        <!-- hsqldb interferes with the use of derby as the default db
+          in hive's use of datanucleus. 
+        -->
+        <exclusion>
+          <groupId>org.hsqldb</groupId>
+          <artifactId>hsqldb</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.fasterxml.jackson.core</groupId>
+          <artifactId>jackson-databind</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
       <version>${guava.version}</version>