Author: ab
Date: Wed Aug 11 08:27:54 2010
New Revision: 984335

URL: http://svn.apache.org/viewvc?rev=984335&view=rev
Log:
Exclude hsqldb.jar from nutch.job due to a conflict with hsqldb that
ships with Hadoop.

Modified:
    nutch/trunk/build.xml

Modified: nutch/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/nutch/trunk/build.xml?rev=984335&r1=984334&r2=984335&view=diff
==============================================================================
--- nutch/trunk/build.xml (original)
+++ nutch/trunk/build.xml Wed Aug 11 08:27:54 2010
@@ -122,8 +122,11 @@
       <zipfileset dir="${build.classes}"
                   excludes="nutch-default.xml,nutch-site.xml"/>
       <zipfileset dir="${conf.dir}" excludes="*.template,hadoop*.*"/>
+      <!-- need to exclude hsqldb.jar due to a conflicting version already
+           present in Hadoop/lib.
+      -->
       <zipfileset dir="${build.lib.dir}" prefix="lib"
-                  includes="**/*.jar" excludes="hadoop-*.jar"/>
+                  includes="**/*.jar" excludes="hadoop-*.jar,hsqldb*.jar"/>
       <zipfileset dir="${build.plugins}" prefix="plugins"/>
     </jar>
   </target>


Reply via email to