You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by ab...@apache.org on 2010/10/28 23:16:40 UTC

svn commit: r1028481 - /nutch/trunk/build.xml

Author: ab
Date: Thu Oct 28 21:16:38 2010
New Revision: 1028481

URL: http://svn.apache.org/viewvc?rev=1028481&view=rev
Log:
Exclude some jars that are not needed for runtime.

Modified:
    nutch/trunk/build.xml

Modified: nutch/trunk/build.xml
URL: http://svn.apache.org/viewvc/nutch/trunk/build.xml?rev=1028481&r1=1028480&r2=1028481&view=diff
==============================================================================
--- nutch/trunk/build.xml (original)
+++ nutch/trunk/build.xml Thu Oct 28 21:16:38 2010
@@ -257,7 +257,7 @@
            present in Hadoop/lib.
       -->
       <zipfileset dir="${build.lib.dir}" prefix="lib"
-                  includes="**/*.jar" excludes="hadoop-*.jar,hsqldb*.jar"/>
+                  includes="**/*.jar" excludes="hadoop-*.jar,hbase*test*.jar,ant*jar,hsqldb*.jar"/>
       <zipfileset dir="${build.plugins}" prefix="plugins"/>
     </jar>
   </target>
@@ -291,7 +291,7 @@
         <fileset dir="${runtime.local}/bin"/>
     </chmod>
     <copy todir="${runtime.local}/lib">
-      <fileset dir="${build.dir}/lib"/>
+      <fileset dir="${build.dir}/lib" excludes="ant*.jar,hadoop*test*.jar,hbase*test*.jar"/>
     </copy>
     <copy todir="${runtime.local}/plugins">
       <fileset dir="${build.dir}/plugins"/>