Renaming targets of contrib builds for consistency with main build targets

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@682670 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2008-08-05 11:07:02 +00:00
parent 4f0119134e
commit e14ed12e9a
2 changed files with 6 additions and 6 deletions

View File

@ -84,7 +84,7 @@
</target> </target>
<!-- Clean: cleans compiled files and other temporary artifacts. --> <!-- Clean: cleans compiled files and other temporary artifacts. -->
<target name="clean" depends="contrib-clean" <target name="clean" depends="clean-contrib"
description="Cleans compiled files and other temporary artifacts."> description="Cleans compiled files and other temporary artifacts.">
<delete dir="${dest}" /> <delete dir="${dest}" />
<delete dir="${dist}" /> <delete dir="${dist}" />
@ -200,7 +200,7 @@
</sequential> </sequential>
</target> </target>
<target name="javadoc-contrib" description="Generate javadoc for contrib classes" depends="contrib-build"> <target name="javadoc-contrib" description="Generate javadoc for contrib classes" depends="build-contrib">
<contrib-crawl target="javadoc" <contrib-crawl target="javadoc"
failonerror="true"/> failonerror="true"/>
</target> </target>
@ -412,7 +412,7 @@
<!-- Run contrib unit tests. --> <!-- Run contrib unit tests. -->
<target name="test" <target name="test"
description="Runs the core unit tests." description="Runs the core unit tests."
depends="core-test, contrib-test" /> depends="core-test, test-contrib" />
<target name="junit" depends="compileTests"> <target name="junit" depends="compileTests">
<!-- no description so it doesn't show up in -projecthelp --> <!-- no description so it doesn't show up in -projecthelp -->

View File

@ -191,17 +191,17 @@
</sequential> </sequential>
</macrodef> </macrodef>
<target name="contrib-clean" <target name="clean-contrib"
description="Cleans all contrib modules and their tests"> description="Cleans all contrib modules and their tests">
<contrib-crawl target="clean"/> <contrib-crawl target="clean"/>
</target> </target>
<target name="contrib-build" <target name="build-contrib"
description="Builds all contrib modules and their tests"> description="Builds all contrib modules and their tests">
<contrib-crawl target="build"/> <contrib-crawl target="build"/>
</target> </target>
<target name="contrib-test" depends="contrib-build"> <target name="test-contrib" depends="build-contrib">
<contrib-crawl target="test" failonerror="true"/> <contrib-crawl target="test" failonerror="true"/>
</target> </target>