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 cu...@apache.org on 2006/02/10 20:21:13 UTC

svn commit: r376802 - /lucene/hadoop/trunk/build.xml

Author: cutting
Date: Fri Feb 10 11:21:09 2006
New Revision: 376802

URL: http://svn.apache.org/viewcvs?rev=376802&view=rev
Log:
Bundle webapps into jar.

Modified:
    lucene/hadoop/trunk/build.xml

Modified: lucene/hadoop/trunk/build.xml
URL: http://svn.apache.org/viewcvs/lucene/hadoop/trunk/build.xml?rev=376802&r1=376801&r2=376802&view=diff
==============================================================================
--- lucene/hadoop/trunk/build.xml (original)
+++ lucene/hadoop/trunk/build.xml Fri Feb 10 11:21:09 2006
@@ -145,17 +145,14 @@
   <!--                                                                    -->
   <!-- ================================================================== -->
   <target name="jar" depends="compile">
-    <copy file="${conf.dir}/hadoop-default.xml"
-          todir="${build.classes}"/>
-    <copy file="${conf.dir}/mapred-default.xml"
-          todir="${build.classes}"/>
     <tar compression="gzip" destfile="${build.classes}/bin.tgz">
       <tarfileset dir="bin" mode="755"/>
     </tar>
     <jar jarfile="${build.dir}/${final.name}.jar"
          basedir="${build.classes}">
-      <manifest>
-      </manifest>
+      <fileset file="${conf.dir}/hadoop-default.xml"/>
+      <fileset file="${conf.dir}/mapred-default.xml"/>
+      <zipfileset dir="${build.webapps}" prefix="webapps"/>
     </jar>
   </target>