Author: jerome
Date: Tue Sep 13 05:52:13 2005
New Revision: 280549
URL: http://svn.apache.org/viewcvs?rev=280549&view=rev
Log:
Sorted alphabetically for easy maintenance
Modified:
lucene/nutch/trunk/src/plugin/build.xml
Modified: lucene/nutch/trunk/src/plugin/build.xml
URL:
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/build.xml?rev=280549&r1=280548&r2=280549&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/build.xml Tue Sep 13 05:52:13 2005
@@ -6,89 +6,89 @@
<!-- Build & deploy all the plugin jars. -->
<!-- ====================================================== -->
<target name="deploy">
+ <ant dir="clustering-carrot2" target="deploy"/>
+ <ant dir="creativecommons" target="deploy"/>
+ <ant dir="index-basic" target="deploy"/>
+ <ant dir="index-more" target="deploy"/>
+ <ant dir="languageidentifier" target="deploy"/>
<ant dir="lib-jakarta-poi" target="deploy"/>
<ant dir="nutch-extensionpoints" target="deploy"/>
+ <ant dir="ontology" target="deploy"/>
<ant dir="protocol-file" target="deploy"/>
<ant dir="protocol-ftp" target="deploy"/>
<ant dir="protocol-http" target="deploy"/>
<ant dir="protocol-httpclient" target="deploy"/>
+ <ant dir="parse-ext" target="deploy"/>
<ant dir="parse-html" target="deploy"/>
<ant dir="parse-js" target="deploy"/>
- <ant dir="parse-text" target="deploy"/>
+ <!-- <ant dir="parse-mp3" target="deploy"/> -->
+ <ant dir="parse-mspowerpoint" target="deploy"/>
+ <ant dir="parse-msword" target="deploy"/>
<ant dir="parse-pdf" target="deploy"/>
<ant dir="parse-rss" target="deploy"/>
- <ant dir="parse-msword" target="deploy"/>
- <ant dir="parse-mspowerpoint" target="deploy"/>
-<!-- <ant dir="parse-mp3" target="deploy"/> -->
-<!-- <ant dir="parse-rtf" target="deploy"/> -->
- <ant dir="parse-ext" target="deploy"/>
+ <!-- <ant dir="parse-rtf" target="deploy"/> -->
+ <ant dir="parse-text" target="deploy"/>
<ant dir="parse-zip" target="deploy"/>
- <ant dir="index-basic" target="deploy"/>
- <ant dir="index-more" target="deploy"/>
<ant dir="query-basic" target="deploy"/>
<ant dir="query-more" target="deploy"/>
<ant dir="query-site" target="deploy"/>
<ant dir="query-url" target="deploy"/>
- <ant dir="urlfilter-regex" target="deploy"/>
<ant dir="urlfilter-prefix" target="deploy"/>
- <ant dir="creativecommons" target="deploy"/>
- <ant dir="languageidentifier" target="deploy"/>
- <ant dir="clustering-carrot2" target="deploy"/>
- <ant dir="ontology" target="deploy"/>
+ <ant dir="urlfilter-regex" target="deploy"/>
</target>
<!-- ====================================================== -->
<!-- Test all of the plugins. -->
<!-- ====================================================== -->
<target name="test">
+ <ant dir="creativecommons" target="test"/>
+ <ant dir="languageidentifier" target="test"/>
+ <ant dir="ontology" target="test"/>
<ant dir="protocol-http" target="test"/>
+ <ant dir="parse-ext" target="test"/>
<ant dir="parse-html" target="test"/>
+ <!-- <ant dir="parse-mp3" target="test"/> -->
+ <ant dir="parse-mspowerpoint" target="test"/>
+ <ant dir="parse-msword" target="test"/>
<ant dir="parse-pdf" target="test"/>
<ant dir="parse-rss" target="test"/>
- <ant dir="parse-msword" target="test"/>
- <ant dir="parse-mspowerpoint" target="test"/>
- <!-- <ant dir="parse-mp3" target="test"/> -->
<!-- <ant dir="parse-rtf" target="test"/> -->
- <ant dir="parse-ext" target="test"/>
<ant dir="parse-zip" target="test"/>
- <ant dir="creativecommons" target="test"/>
- <ant dir="languageidentifier" target="test"/>
- <ant dir="ontology" target="test"/>
</target>
<!-- ====================================================== -->
<!-- Clean all of the plugins. -->
<!-- ====================================================== -->
<target name="clean">
+ <ant dir="clustering-carrot2" target="clean"/>
+ <ant dir="creativecommons" target="clean"/>
+ <ant dir="index-basic" target="clean"/>
+ <ant dir="index-more" target="clean"/>
+ <ant dir="languageidentifier" target="clean"/>
<ant dir="lib-jakarta-poi" target="clean"/>
<ant dir="nutch-extensionpoints" target="clean"/>
+ <ant dir="ontology" target="clean"/>
<ant dir="protocol-file" target="clean"/>
<ant dir="protocol-ftp" target="clean"/>
<ant dir="protocol-http" target="clean"/>
<ant dir="protocol-httpclient" target="clean"/>
+ <ant dir="parse-ext" target="clean"/>
<ant dir="parse-html" target="clean"/>
<ant dir="parse-js" target="clean"/>
- <ant dir="parse-text" target="clean"/>
+ <ant dir="parse-mp3" target="clean"/>
+ <ant dir="parse-mspowerpoint" target="clean"/>
+ <ant dir="parse-msword" target="clean"/>
<ant dir="parse-pdf" target="clean"/>
<ant dir="parse-rss" target="clean"/>
- <ant dir="parse-msword" target="clean"/>
- <ant dir="parse-mspowerpoint" target="clean"/>
- <ant dir="parse-mp3" target="clean"/>
<ant dir="parse-rtf" target="clean"/>
- <ant dir="parse-ext" target="clean"/>
+ <ant dir="parse-text" target="clean"/>
<ant dir="parse-zip" target="clean"/>
- <ant dir="index-basic" target="clean"/>
- <ant dir="index-more" target="clean"/>
<ant dir="query-basic" target="clean"/>
<ant dir="query-more" target="clean"/>
<ant dir="query-site" target="clean"/>
<ant dir="query-url" target="clean"/>
- <ant dir="urlfilter-regex" target="clean"/>
<ant dir="urlfilter-prefix" target="clean"/>
- <ant dir="creativecommons" target="clean"/>
- <ant dir="languageidentifier" target="clean"/>
- <ant dir="clustering-carrot2" target="clean"/>
- <ant dir="ontology" target="clean"/>
+ <ant dir="urlfilter-regex" target="clean"/>
</target>
</project>