You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by tu...@apache.org on 2012/02/16 23:16:16 UTC

svn commit: r1245210 - in /incubator/oozie/trunk: pom.xml release-log.txt

Author: tucu
Date: Thu Feb 16 22:16:15 2012
New Revision: 1245210

URL: http://svn.apache.org/viewvc?rev=1245210&view=rev
Log:
OOZIE-698 Make sharelib components version dependency configurable (tucu)

Modified:
    incubator/oozie/trunk/pom.xml
    incubator/oozie/trunk/release-log.txt

Modified: incubator/oozie/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/pom.xml?rev=1245210&r1=1245209&r2=1245210&view=diff
==============================================================================
--- incubator/oozie/trunk/pom.xml (original)
+++ incubator/oozie/trunk/pom.xml Thu Feb 16 22:16:15 2012
@@ -72,6 +72,12 @@
         the hadoop-auth artifact. After we phase-out pre 0.23 we can get rid of this property.
         -->
         <hadoop.auth.version>0.23.1-SNAPSHOT</hadoop.auth.version>
+
+         <!-- Sharelib component versions -->
+         <hive.version>0.9.0-SNAPSHOT</hive.version>
+         <pig.version>0.9.0</pig.version>
+         <sqoop.version>1.5.0-incubating-SNAPSHOT</sqoop.version>
+         <streaming.version>${hadoop.version}</streaming.version>
     </properties>
 
     <modules>
@@ -307,13 +313,13 @@
             <dependency>
                 <groupId>org.apache.hadoop</groupId>
                 <artifactId>hadoop-streaming</artifactId>
-                <version>${hadoop.version}</version>
+                <version>${streaming.version}</version>
             </dependency>
 
             <dependency>
                 <groupId>org.apache.pig</groupId>
                 <artifactId>pig</artifactId>
-                <version>0.9.0</version>
+                <version>${pig.version}</version>
                 <exclusions>
                     <exclusion>
                         <groupId>org.apache.hadoop</groupId>
@@ -395,7 +401,7 @@
             <dependency>
                 <groupId>org.apache.hive</groupId>
                 <artifactId>hive-cli</artifactId>
-                <version>0.9.0-SNAPSHOT</version>
+                <version>${hive.version}</version>
                 <exclusions>
                     <exclusion>
                         <groupId>hadoop</groupId>
@@ -580,7 +586,7 @@
             <dependency>
                 <groupId>org.apache.sqoop</groupId>
                 <artifactId>sqoop</artifactId>
-                <version>1.5.0-incubating-SNAPSHOT</version>
+                <version>${sqoop.version}</version>
             </dependency>
 
             <dependency>

Modified: incubator/oozie/trunk/release-log.txt
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/release-log.txt?rev=1245210&r1=1245209&r2=1245210&view=diff
==============================================================================
--- incubator/oozie/trunk/release-log.txt (original)
+++ incubator/oozie/trunk/release-log.txt Thu Feb 16 22:16:15 2012
@@ -1,5 +1,6 @@
 -- Oozie 3.2.0 release
 
+OOZIE-698 Make sharelib components version dependency configurable (tucu)
 OOZIE-696 scope of oozie-hadoop-test artifact is wrong (tucu)
 OOZIE-691 Fix testcases using launcher using Hadoop 0.23.x (tucu)
 OOZIE-690 use hadoop-client/hadoop-minicluster artifacts for Hadoop 0.23.1 & trunk (tucu)