You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ta...@apache.org on 2007/12/23 18:16:33 UTC

svn commit: r606577 - in /lucene/hadoop/trunk: CHANGES.txt src/contrib/eclipse-plugin/build.xml

Author: taton
Date: Sun Dec 23 09:16:32 2007
New Revision: 606577

URL: http://svn.apache.org/viewvc?rev=606577&view=rev
Log:
HADOOP-2452. Fix a build issue with the eclipse plug-in: the build.xml now correctly refers to the generated hadoop-*-core.jar.


Modified:
    lucene/hadoop/trunk/CHANGES.txt
    lucene/hadoop/trunk/src/contrib/eclipse-plugin/build.xml

Modified: lucene/hadoop/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/CHANGES.txt?rev=606577&r1=606576&r2=606577&view=diff
==============================================================================
--- lucene/hadoop/trunk/CHANGES.txt (original)
+++ lucene/hadoop/trunk/CHANGES.txt Sun Dec 23 09:16:32 2007
@@ -283,6 +283,9 @@
     reducer and the number of fetch-failures vis-a-vis total number of
     fetch-attempts are taken into account before teh reducer kills itself.
     (Amar Kamat via acmurthy)
+    
+    HADOOP-2452. Fix eclipse plug-in build.xml to refers to the right
+    location where hadoop-*-core.jar is generated. (taton)
 
 Branch 0.15 (unreleased)
 

Modified: lucene/hadoop/trunk/src/contrib/eclipse-plugin/build.xml
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/src/contrib/eclipse-plugin/build.xml?rev=606577&r1=606576&r2=606577&view=diff
==============================================================================
--- lucene/hadoop/trunk/src/contrib/eclipse-plugin/build.xml (original)
+++ lucene/hadoop/trunk/src/contrib/eclipse-plugin/build.xml Sun Dec 23 09:16:32 2007
@@ -36,7 +36,7 @@
   <!-- Override jar target to specify manifest -->
   <target name="jar" depends="compile" unless="skip.contrib">
     <mkdir dir="${build.dir}/lib"/>
-    <copy file="${deploy.dir}/hadoop-${version}-core.jar" tofile="${build.dir}/lib/hadoop-core.jar" verbose="true"/>
+    <copy file="${hadoop.root}/build/hadoop-${version}-core.jar" tofile="${build.dir}/lib/hadoop-core.jar" verbose="true"/>
     <copy file="${hadoop.root}/lib/commons-cli-2.0-SNAPSHOT.jar" todir="${build.dir}/lib" verbose="true"/>
     <jar
       jarfile="${build.dir}/hadoop-${version}-${name}.jar"