You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by jn...@apache.org on 2014/06/25 13:01:39 UTC

svn commit: r1605331 - in /nutch/trunk: CHANGES.txt build.xml

Author: jnioche
Date: Wed Jun 25 11:01:38 2014
New Revision: 1605331

URL: http://svn.apache.org/r1605331
Log:
NUTCH-1633 slf4j is provided by hadoop and should not be included in the job file (kaveh minooie via jnioche)

Modified:
    nutch/trunk/CHANGES.txt
    nutch/trunk/build.xml

Modified: nutch/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/trunk/CHANGES.txt?rev=1605331&r1=1605330&r2=1605331&view=diff
==============================================================================
--- nutch/trunk/CHANGES.txt (original)
+++ nutch/trunk/CHANGES.txt Wed Jun 25 11:01:38 2014
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Nutch Current Development
 
+* NUTCH-1633 slf4j is provided by hadoop and should not be included in the job file (kaveh minooie via jnioche)
+
 * NUTCH-1787 update and complete API doc overview page (snagel)
 
 * NUTCH-1767 remove special treatment of "params" in relative links (snagel)

Modified: nutch/trunk/build.xml
URL: http://svn.apache.org/viewvc/nutch/trunk/build.xml?rev=1605331&r1=1605330&r2=1605331&view=diff
==============================================================================
--- nutch/trunk/build.xml (original)
+++ nutch/trunk/build.xml Wed Jun 25 11:01:38 2014
@@ -303,7 +303,7 @@
                   excludes="nutch-default.xml,nutch-site.xml"/>
       <zipfileset dir="${conf.dir}" excludes="*.template,hadoop*.*"/>
       <zipfileset dir="${build.lib.dir}" prefix="lib"
-                  includes="**/*.jar" excludes="hadoop-*.jar"/>
+                  includes="**/*.jar" excludes="hadoop-*.jar,slf4j*.jar,log4j*.jar"/>
       <zipfileset dir="${build.plugins}" prefix="classes/plugins"/>
     </jar>
   </target>