You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2010/01/06 19:32:46 UTC

svn commit: r896604 - in /hadoop/pig/branches/branch-0.6: CHANGES.txt contrib/piggybank/java/build.xml

Author: daijy
Date: Wed Jan  6 18:32:45 2010
New Revision: 896604

URL: http://svn.apache.org/viewvc?rev=896604&view=rev
Log:
PIG-1180: Piggybank should compile even if we only have "pig-withouthadoop.jar" but no "pig.jar" in the pig home directory

Modified:
    hadoop/pig/branches/branch-0.6/CHANGES.txt
    hadoop/pig/branches/branch-0.6/contrib/piggybank/java/build.xml

Modified: hadoop/pig/branches/branch-0.6/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/pig/branches/branch-0.6/CHANGES.txt?rev=896604&r1=896603&r2=896604&view=diff
==============================================================================
--- hadoop/pig/branches/branch-0.6/CHANGES.txt (original)
+++ hadoop/pig/branches/branch-0.6/CHANGES.txt Wed Jan  6 18:32:45 2010
@@ -262,6 +262,9 @@
 PIG-1172: PushDownForeachFlatten shall not push ForEach below Join if the
 flattened fields is used in Join (daijy)
 
+PIG-1180: Piggybank should compile even if we only have
+"pig-withouthadoop.jar" but no "pig.jar" in the pig home directory (daijy)
+
 Release 0.5.0
 
 INCOMPATIBLE CHANGES

Modified: hadoop/pig/branches/branch-0.6/contrib/piggybank/java/build.xml
URL: http://svn.apache.org/viewvc/hadoop/pig/branches/branch-0.6/contrib/piggybank/java/build.xml?rev=896604&r1=896603&r2=896604&view=diff
==============================================================================
--- hadoop/pig/branches/branch-0.6/contrib/piggybank/java/build.xml (original)
+++ hadoop/pig/branches/branch-0.6/contrib/piggybank/java/build.xml Wed Jan  6 18:32:45 2010
@@ -32,6 +32,8 @@
     <property name="build.docs" value="${build.dir}/docs" />
     <property name="build.javadoc" value="${build.docs}/api" />
     <property name="pigjar" value="../../../pig.jar" />
+    <property name="pigjar-withouthadoop" value="../../../pig-withouthadoop.jar" />
+    <property name="hadoopjar" value="../../../lib/hadoop20.jar" />
     <property name="pigtest" value="../../../build/test/classes" />
     <property name="udfjar" value="piggybank.jar" />
     <property name="src.dir" value="src/main/java/org/apache/pig/piggybank" />
@@ -51,6 +53,8 @@
     <path id="pigudf.classpath">
         <pathelement location="${build.classes}"/>
         <pathelement location="${pigjar}"/>
+        <pathelement location="${pigjar-withouthadoop}"/>
+        <pathelement location="${hadoopjar}"/>
         <pathelement location="${pigtest}"/>
     </path>