mirror of https://github.com/apache/lucene.git
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:
parent
4f0119134e
commit
e14ed12e9a
|
@ -84,7 +84,7 @@
|
|||
</target>
|
||||
|
||||
<!-- 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.">
|
||||
<delete dir="${dest}" />
|
||||
<delete dir="${dist}" />
|
||||
|
@ -200,7 +200,7 @@
|
|||
</sequential>
|
||||
</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"
|
||||
failonerror="true"/>
|
||||
</target>
|
||||
|
@ -412,7 +412,7 @@
|
|||
<!-- Run contrib unit tests. -->
|
||||
<target name="test"
|
||||
description="Runs the core unit tests."
|
||||
depends="core-test, contrib-test" />
|
||||
depends="core-test, test-contrib" />
|
||||
|
||||
<target name="junit" depends="compileTests">
|
||||
<!-- no description so it doesn't show up in -projecthelp -->
|
||||
|
|
|
@ -191,17 +191,17 @@
|
|||
</sequential>
|
||||
</macrodef>
|
||||
|
||||
<target name="contrib-clean"
|
||||
<target name="clean-contrib"
|
||||
description="Cleans all contrib modules and their tests">
|
||||
<contrib-crawl target="clean"/>
|
||||
</target>
|
||||
|
||||
<target name="contrib-build"
|
||||
<target name="build-contrib"
|
||||
description="Builds all contrib modules and their tests">
|
||||
<contrib-crawl target="build"/>
|
||||
</target>
|
||||
|
||||
<target name="contrib-test" depends="contrib-build">
|
||||
<target name="test-contrib" depends="build-contrib">
|
||||
<contrib-crawl target="test" failonerror="true"/>
|
||||
</target>
|
||||
|
||||
|
|
Loading…
Reference in New Issue