You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by je...@apache.org on 2006/04/26 23:43:39 UTC

svn commit: r397311 - /lucene/nutch/trunk/build.xml

Author: jerome
Date: Wed Apr 26 14:43:38 2006
New Revision: 397311

URL: http://svn.apache.org/viewcvs?rev=397311&view=rev
Log:
Copy the plugin.dtd directly into javadoc build dir instead of source dir

Modified:
    lucene/nutch/trunk/build.xml

Modified: lucene/nutch/trunk/build.xml
URL: http://svn.apache.org/viewcvs/lucene/nutch/trunk/build.xml?rev=397311&r1=397310&r2=397311&view=diff
==============================================================================
--- lucene/nutch/trunk/build.xml (original)
+++ lucene/nutch/trunk/build.xml Wed Apr 26 14:43:38 2006
@@ -279,9 +279,6 @@
   <!-- Documentation                                                      -->
   <!-- ================================================================== -->
   <target name="javadoc" depends="compile">
-    <!-- Copy the plugin.dtd file to the plugin doc-files dir -->
-    <copy file="${plugins.dir}/plugin.dtd"
-          todir="${src.dir}/org/apache/nutch/plugin/doc-files"/>
     <mkdir dir="${build.javadoc}"/>
     <javadoc
       overview="${src.dir}/overview.html"
@@ -356,8 +353,9 @@
       <group title="Ontology Plugins" packages="${plugins.ontology}"/>
       <group title="Misc. Plugins" packages="${plugins.misc}"/>
     </javadoc>
-    <!-- Clean the doc-files dir from src -->
-    <delete dir="${src.dir}/org/apache/nutch/plugin/doc-files"/>
+    <!-- Copy the plugin.dtd file to the plugin doc-files dir -->
+    <copy file="${plugins.dir}/plugin.dtd"
+          todir="${build.javadoc}/org/apache/nutch/plugin/doc-files"/>
   </target>	
 	
   <target name="default-doc">