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 2010/07/07 11:22:24 UTC

svn commit: r961318 - in /nutch/trunk/src/plugin: lib-nekohtml/build.xml lib-xml/build.xml protocol-httpclient/build.xml

Author: jnioche
Date: Wed Jul  7 09:22:24 2010
New Revision: 961318

URL: http://svn.apache.org/viewvc?rev=961318&view=rev
Log:
NUTCH-821 : fixed issue with missing lib dirs for some plugins

Modified:
    nutch/trunk/src/plugin/lib-nekohtml/build.xml
    nutch/trunk/src/plugin/lib-xml/build.xml
    nutch/trunk/src/plugin/protocol-httpclient/build.xml

Modified: nutch/trunk/src/plugin/lib-nekohtml/build.xml
URL: http://svn.apache.org/viewvc/nutch/trunk/src/plugin/lib-nekohtml/build.xml?rev=961318&r1=961317&r2=961318&view=diff
==============================================================================
--- nutch/trunk/src/plugin/lib-nekohtml/build.xml (original)
+++ nutch/trunk/src/plugin/lib-nekohtml/build.xml Wed Jul  7 09:22:24 2010
@@ -25,10 +25,6 @@
    ! -->
   <target name="compile" depends="init, resolve-default"/>
 
-  <target name="jar" depends="compile">
-    <copy todir="${build.dir}" verbose="true">
-      <fileset dir="./lib" includes="**/*.jar"/>
-    </copy>
-  </target>
+  <target name="jar" depends="compile"/>
 
 </project>

Modified: nutch/trunk/src/plugin/lib-xml/build.xml
URL: http://svn.apache.org/viewvc/nutch/trunk/src/plugin/lib-xml/build.xml?rev=961318&r1=961317&r2=961318&view=diff
==============================================================================
--- nutch/trunk/src/plugin/lib-xml/build.xml (original)
+++ nutch/trunk/src/plugin/lib-xml/build.xml Wed Jul  7 09:22:24 2010
@@ -17,18 +17,20 @@
 -->
 <project name="lib-xml" default="jar">
 
-  <import file="../build-plugin.xml"/>
+	<import file="../build-plugin.xml" />
 
-  <!--
+	<!--
    ! Override the compile and jar targets,
    ! since there is nothing to compile here.
    ! -->
-  <target name="compile" depends="init, resolve-default"/>
+	<target name="compile" depends="init, resolve-default" />
 
-  <target name="jar" depends="compile">
-    <copy todir="${build.dir}" verbose="true">
-      <fileset dir="./lib" includes="**/*.jar"/>
-    </copy>
-  </target>
+	<!--
+	<target name="jar" depends="compile">
+		<copy todir="${build.dir}" verbose="true">
+			<fileset dir="./lib" includes="**/*.jar" />
+		</copy>
+	</target>
+	-->
 
 </project>

Modified: nutch/trunk/src/plugin/protocol-httpclient/build.xml
URL: http://svn.apache.org/viewvc/nutch/trunk/src/plugin/protocol-httpclient/build.xml?rev=961318&r1=961317&r2=961318&view=diff
==============================================================================
--- nutch/trunk/src/plugin/protocol-httpclient/build.xml (original)
+++ nutch/trunk/src/plugin/protocol-httpclient/build.xml Wed Jul  7 09:22:24 2010
@@ -27,9 +27,6 @@
     <fileset dir="${nutch.root}/build">
       <include name="**/lib-http/*.jar" />
     </fileset>
-    <fileset dir="${nutch.root}/lib/jsp-2.1">
-      <include name="*.jar"/>
-    </fileset>
     <pathelement location="${build.dir}/test/conf"/>
   </path>