Author: jerome
Date: Fri Mar  3 16:26:54 2006
New Revision: 382981

URL: http://svn.apache.org/viewcvs?rev=382981&view=rev
Log:
Plugins now assumes that the core is already builded when building nutch

Modified:
    lucene/nutch/trunk/src/plugin/analysis-de/build.xml
    lucene/nutch/trunk/src/plugin/analysis-fr/build.xml
    lucene/nutch/trunk/src/plugin/build-plugin.xml
    lucene/nutch/trunk/src/plugin/build.xml
    lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml
    lucene/nutch/trunk/src/plugin/creativecommons/build.xml
    lucene/nutch/trunk/src/plugin/index-basic/build.xml
    lucene/nutch/trunk/src/plugin/index-more/build.xml
    lucene/nutch/trunk/src/plugin/languageidentifier/build.xml
    lucene/nutch/trunk/src/plugin/lib-http/build.xml
    lucene/nutch/trunk/src/plugin/lib-parsems/build.xml
    lucene/nutch/trunk/src/plugin/microformats-reltag/build.xml
    lucene/nutch/trunk/src/plugin/ontology/build.xml
    lucene/nutch/trunk/src/plugin/parse-ext/build.xml
    lucene/nutch/trunk/src/plugin/parse-html/build.xml
    lucene/nutch/trunk/src/plugin/parse-js/build.xml
    lucene/nutch/trunk/src/plugin/parse-mp3/build.xml
    lucene/nutch/trunk/src/plugin/parse-msexcel/build.xml
    lucene/nutch/trunk/src/plugin/parse-mspowerpoint/build.xml
    lucene/nutch/trunk/src/plugin/parse-msword/build.xml
    lucene/nutch/trunk/src/plugin/parse-pdf/build.xml
    lucene/nutch/trunk/src/plugin/parse-rss/build.xml
    lucene/nutch/trunk/src/plugin/parse-swf/build.xml
    lucene/nutch/trunk/src/plugin/parse-text/build.xml
    lucene/nutch/trunk/src/plugin/parse-zip/build.xml
    lucene/nutch/trunk/src/plugin/protocol-file/build.xml
    lucene/nutch/trunk/src/plugin/protocol-ftp/build.xml
    lucene/nutch/trunk/src/plugin/protocol-http/build.xml
    lucene/nutch/trunk/src/plugin/protocol-httpclient/build.xml
    lucene/nutch/trunk/src/plugin/query-basic/build.xml
    lucene/nutch/trunk/src/plugin/query-more/build.xml
    lucene/nutch/trunk/src/plugin/query-site/build.xml
    lucene/nutch/trunk/src/plugin/query-url/build.xml
    lucene/nutch/trunk/src/plugin/urlfilter-prefix/build.xml
    lucene/nutch/trunk/src/plugin/urlfilter-regex/build.xml

Modified: lucene/nutch/trunk/src/plugin/analysis-de/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/analysis-de/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/analysis-de/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/analysis-de/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,10 @@
 <?xml version="1.0"?>
 
-<project name="analysis-de" default="jar">
+<project name="analysis-de" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
+  
   <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
     <ant target="jar" inheritall="false" dir="../lib-lucene-analyzers"/>
   </target>
 

Modified: lucene/nutch/trunk/src/plugin/analysis-fr/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/analysis-fr/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/analysis-fr/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/analysis-fr/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,11 @@
 <?xml version="1.0"?>
 
-<project name="analysis-fr" default="jar">
+<project name="analysis-fr" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 
   <!-- Build compilation dependencies -->
   <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
     <ant target="jar" inheritall="false" dir="../lib-lucene-analyzers"/>
   </target>
 

Modified: lucene/nutch/trunk/src/plugin/build-plugin.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/build-plugin.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/build-plugin.xml (original)
+++ lucene/nutch/trunk/src/plugin/build-plugin.xml Fri Mar  3 16:26:54 2006
@@ -96,9 +96,14 @@
      source="${javac.version}"
      deprecation="${javac.deprecation}">
       <classpath refid="classpath"/>
-    </javac>    
+    </javac>
   </target>
 
+  <target name="compile-core">
+    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
+    <ant target="compile"/>
+  </target>
+  
   <!-- ================================================================== -->
   <!-- Make plugin .jar                                                   -->
   <!-- ================================================================== -->
@@ -109,6 +114,13 @@
       jarfile="${build.dir}/${name}.jar"
       basedir="${build.classes}"
     />
+  </target>
+
+  <target name="jar-core" depends="compile-core">
+    <jar
+        jarfile="${build.dir}/${name}.jar"
+        basedir="${build.classes}"
+        />
   </target>
 
   <!-- ================================================================== -->

Modified: lucene/nutch/trunk/src/plugin/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/build.xml Fri Mar  3 16:26:54 2006
@@ -1,6 +1,11 @@
 <?xml version="1.0"?>
 
-<project name="Nutch" default="deploy" basedir=".">
+<project name="Nutch" default="deploy-core" basedir=".">
+
+  <target name="deploy-core">
+    <ant target="compile-core" inheritall="false" dir="../.."/>
+    <ant target="deploy"/>
+  </target>
 
   <!-- ====================================================== -->
   <!-- Build & deploy all the plugin jars.                    -->

Modified: lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml Fri Mar  3 
16:26:54 2006
@@ -1,12 +1,11 @@
 <?xml version="1.0"?>
 
-<project name="clustering-carrot2" default="jar">
+<project name="clustering-carrot2" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 
   <!-- Build compilation dependencies -->
   <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
     <ant target="jar" inheritall="false" dir="../lib-log4j"/>
     <ant target="jar" inheritall="false" dir="../lib-nekohtml"/>
   </target>

Modified: lucene/nutch/trunk/src/plugin/creativecommons/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/creativecommons/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/creativecommons/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/creativecommons/build.xml Fri Mar  3 16:26:54 
2006
@@ -1,13 +1,8 @@
 <?xml version="1.0"?>
 
-<project name="creativecommons" default="jar">
+<project name="creativecommons" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
   <!-- Deploy Unit test dependencies -->
   <target name="deps-test">

Modified: lucene/nutch/trunk/src/plugin/index-basic/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/index-basic/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/index-basic/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/index-basic/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="index-basic" default="jar">
+<project name="index-basic" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/index-more/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/index-more/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/index-more/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/index-more/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="index-more" default="jar">
+<project name="index-more" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/languageidentifier/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/languageidentifier/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/languageidentifier/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/languageidentifier/build.xml Fri Mar  3 
16:26:54 2006
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 
-<project name="language-identifier" default="jar">
+<project name="language-identifier" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 
@@ -13,11 +13,6 @@
     <copy todir="${build.test}">
       <fileset dir="${src.test}" includes="**/*.test, **/*.txt"/>
     </copy>
-  </target>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
   </target>
 
   <!-- Deploy Unit test dependencies -->

Modified: lucene/nutch/trunk/src/plugin/lib-http/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/lib-http/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/lib-http/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/lib-http/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="lib-http" default="jar">
+<project name="lib-http" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/lib-parsems/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/lib-parsems/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/lib-parsems/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/lib-parsems/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,11 @@
 <?xml version="1.0"?>
 
-<project name="lib-parsems" default="jar">
+<project name="lib-parsems" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 
   <!-- Build compilation dependencies -->
   <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
     <ant target="jar" inheritall="false" dir="../lib-jakarta-poi"/>
   </target>
 

Modified: lucene/nutch/trunk/src/plugin/microformats-reltag/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/microformats-reltag/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/microformats-reltag/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/microformats-reltag/build.xml Fri Mar  3 
16:26:54 2006
@@ -1,13 +1,8 @@
 <?xml version="1.0"?>
 
-<project name="microformats-reltag" default="jar">
+<project name="microformats-reltag" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
   <!-- Deploy Unit test dependencies -->
   <target name="deps-test">

Modified: lucene/nutch/trunk/src/plugin/ontology/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/ontology/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/ontology/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/ontology/build.xml Fri Mar  3 16:26:54 2006
@@ -1,13 +1,8 @@
 <?xml version="1.0"?>
 
-<project name="ontology" default="jar">
+<project name="ontology" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
   <!-- Deploy Unit test dependencies -->
   <target name="deps-test">

Modified: lucene/nutch/trunk/src/plugin/parse-ext/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-ext/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-ext/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-ext/build.xml Fri Mar  3 16:26:54 2006
@@ -1,13 +1,8 @@
 <?xml version="1.0"?>
 
-<project name="parse-ext" default="jar">
+<project name="parse-ext" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
   <!-- Deploy Unit test dependencies -->
   <target name="deps-test">

Modified: lucene/nutch/trunk/src/plugin/parse-html/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-html/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-html/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-html/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,11 @@
 <?xml version="1.0"?>
 
-<project name="parse-html" default="jar">
+<project name="parse-html" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 
   <!-- Build compilation dependencies -->
   <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
     <ant target="jar" inheritall="false" dir="../lib-nekohtml"/>
   </target>
 

Modified: lucene/nutch/trunk/src/plugin/parse-js/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-js/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-js/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-js/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="parse-js" default="jar">
+<project name="parse-js" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/parse-mp3/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-mp3/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-mp3/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-mp3/build.xml Fri Mar  3 16:26:54 2006
@@ -1,13 +1,8 @@
 <?xml version="1.0"?>
 
-<project name="parse-mp3" default="jar">
+<project name="parse-mp3" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
   <!-- for junit test -->
   <mkdir dir="${build.test}/data"/>

Modified: lucene/nutch/trunk/src/plugin/parse-msexcel/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-msexcel/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-msexcel/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-msexcel/build.xml Fri Mar  3 16:26:54 
2006
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 
-<project name="parse-msexcel" default="jar">
+<project name="parse-msexcel" default="jar-core">
 
   <import file="../build-plugin.xml" />
 

Modified: lucene/nutch/trunk/src/plugin/parse-mspowerpoint/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-mspowerpoint/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-mspowerpoint/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-mspowerpoint/build.xml Fri Mar  3 
16:26:54 2006
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 
-<project name="parse-mspowerpoint" default="jar">
+<project name="parse-mspowerpoint" default="jar-core">
 
   <import file="../build-plugin.xml" />
 

Modified: lucene/nutch/trunk/src/plugin/parse-msword/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-msword/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-msword/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-msword/build.xml Fri Mar  3 16:26:54 
2006
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 
-<project name="parse-msword" default="jar">
+<project name="parse-msword" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 

Modified: lucene/nutch/trunk/src/plugin/parse-pdf/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-pdf/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-pdf/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-pdf/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,11 @@
 <?xml version="1.0"?>
 
-<project name="parse-pdf" default="jar">
+<project name="parse-pdf" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 
   <!-- Build compilation dependencies -->
   <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
     <ant target="jar" inheritall="false" dir="../lib-log4j"/>
   </target>
 

Modified: lucene/nutch/trunk/src/plugin/parse-rss/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-rss/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-rss/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-rss/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,11 @@
 <?xml version="1.0"?>
 
-<project name="parse-rss" default="jar">
+<project name="parse-rss" default="jar-core">
 
  <import file="../build-plugin.xml"/>
 
  <!-- Build compilation dependencies -->
  <target name="deps-jar">
-   <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
    <ant target="jar" inheritall="false" dir="../lib-log4j"/>
  </target>
 

Modified: lucene/nutch/trunk/src/plugin/parse-swf/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-swf/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-swf/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-swf/build.xml Fri Mar  3 16:26:54 2006
@@ -1,13 +1,8 @@
 <?xml version="1.0"?>
 
-<project name="parse-swf" default="jar">
+<project name="parse-swf" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
   <!-- Deploy Unit test dependencies -->
   <target name="deps-test">

Modified: lucene/nutch/trunk/src/plugin/parse-text/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-text/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-text/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-text/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="parse-text" default="jar">
+<project name="parse-text" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/parse-zip/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/parse-zip/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/parse-zip/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/parse-zip/build.xml Fri Mar  3 16:26:54 2006
@@ -1,13 +1,8 @@
 <?xml version="1.0"?>
 
-<project name="parse-zip" default="jar">
+<project name="parse-zip" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
   <!-- Deploy Unit test dependencies -->
   <target name="deps-test">

Modified: lucene/nutch/trunk/src/plugin/protocol-file/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/protocol-file/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/protocol-file/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/protocol-file/build.xml Fri Mar  3 16:26:54 
2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="protocol-file" default="jar">
+<project name="protocol-file" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/protocol-ftp/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/protocol-ftp/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/protocol-ftp/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/protocol-ftp/build.xml Fri Mar  3 16:26:54 
2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="protocol-ftp" default="jar">
+<project name="protocol-ftp" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/protocol-http/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/protocol-http/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/protocol-http/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/protocol-http/build.xml Fri Mar  3 16:26:54 
2006
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 
-<project name="protocol-http" default="jar">
+<project name="protocol-http" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 

Modified: lucene/nutch/trunk/src/plugin/protocol-httpclient/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/protocol-httpclient/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/protocol-httpclient/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/protocol-httpclient/build.xml Fri Mar  3 
16:26:54 2006
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 
-<project name="protocol-httpclient" default="jar">
+<project name="protocol-httpclient" default="jar-core">
 
   <import file="../build-plugin.xml"/>
 

Modified: lucene/nutch/trunk/src/plugin/query-basic/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/query-basic/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/query-basic/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/query-basic/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="query-basic" default="jar">
+<project name="query-basic" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/query-more/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/query-more/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/query-more/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/query-more/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="query-more" default="jar">
+<project name="query-more" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/query-site/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/query-site/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/query-site/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/query-site/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="query-site" default="jar">
+<project name="query-site" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/query-url/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/query-url/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/query-url/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/query-url/build.xml Fri Mar  3 16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="query-url" default="jar">
+<project name="query-url" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/urlfilter-prefix/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/urlfilter-prefix/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/urlfilter-prefix/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/urlfilter-prefix/build.xml Fri Mar  3 
16:26:54 2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="urlfilter-prefix" default="jar">
+<project name="urlfilter-prefix" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>

Modified: lucene/nutch/trunk/src/plugin/urlfilter-regex/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/urlfilter-regex/build.xml?rev=382981&r1=382980&r2=382981&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/urlfilter-regex/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/urlfilter-regex/build.xml Fri Mar  3 16:26:54 
2006
@@ -1,12 +1,7 @@
 <?xml version="1.0"?>
 
-<project name="urlfilter-regex" default="jar">
+<project name="urlfilter-regex" default="jar-core">
 
   <import file="../build-plugin.xml"/>
-
-  <!-- Build compilation dependencies -->
-  <target name="deps-jar">
-    <ant target="compile-core" inheritall="false" dir="${nutch.root}"/>
-  </target>
 
 </project>


Reply via email to