Author: tucu
Date: Tue Jan 10 20:43:55 2012
New Revision: 1229720
URL: http://svn.apache.org/viewvc?rev=1229720&view=rev
Log:
OOZIE-639 Hive sharelib POM must exclude hadoop-core. (tucu)
Modified:
incubator/oozie/trunk/sharelib/hive/pom.xml
Modified: incubator/oozie/trunk/sharelib/hive/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/trunk/sharelib/hive/pom.xml?rev=1229720&r1=1229719&r2=1229720&view=diff
==============================================================================
--- incubator/oozie/trunk/sharelib/hive/pom.xml (original)
+++ incubator/oozie/trunk/sharelib/hive/pom.xml Tue Jan 10 20:43:55 2012
@@ -43,6 +43,10 @@
<scope>compile</scope>
<exclusions>
<exclusion>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-core</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>org.apache.hive</groupId>
<artifactId>hive-hwi</artifactId>
</exclusion>
@@ -87,7 +91,13 @@
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-contrib</artifactId>
- <scope>runtime</scope>
+ <scope>compile</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-core</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.antlr</groupId>