LUCENE-3965: contrib-build -> modules-build (project-name)

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1326329 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-04-15 13:30:20 +00:00
parent f3536126ba
commit 0404a5ac65
5 changed files with 7 additions and 7 deletions

View File

@ -27,7 +27,7 @@
<import file="../../module-build.xml"/>
<target name="init" depends="contrib-build.init,jar-lucene-core"/>
<target name="init" depends="module-build.init,jar-lucene-core"/>
<path id="classpath">
<pathelement path="${analyzers-common.jar}"/>

View File

@ -17,7 +17,7 @@
limitations under the License.
-->
<project name="contrib-build" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
<project name="module-build" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
<echo>Building ${ant.project.name}...</echo>
<!-- TODO: adjust build.dir/dist.dir appropriately when a contrib project is run individually -->

View File

@ -135,8 +135,8 @@
<test-macro dataDir="src/tools/test" junit.classpath="tools.test.classpath"/>
</target>
<target name="compile-test" depends="contrib-build.compile-test, compile-tools-tests"/>
<target name="compile-test" depends="module-build.compile-test, compile-tools-tests"/>
<!-- TODO: not until we properly make 'test-tools' work with clover etc
<target name="test" depends="contrib-build.test, test-tools"/> -->
<target name="test" depends="module-build.test, test-tools"/> -->
</project>

View File

@ -251,7 +251,7 @@
</ant>
</target>
<target name="init" depends="contrib-build.init,resolve-icu,jar-memory,jar-highlighter,jar-analyzers-common,jar-queryparser,jar-facet"/>
<target name="init" depends="module-build.init,resolve-icu,jar-memory,jar-highlighter,jar-analyzers-common,jar-queryparser,jar-facet"/>
<target name="clean-javacc">
<fileset dir="src/java/org/apache/lucene/benchmark/byTask/feeds/demohtml" includes="*.java">
@ -265,7 +265,7 @@
/>
</target>
<target name="compile-test" depends="copy-alg-files-for-testing,contrib-build.compile-test"/>
<target name="compile-test" depends="copy-alg-files-for-testing,module-build.compile-test"/>
<target name="copy-alg-files-for-testing" description="copy .alg files as resources for testing">
<copy todir="${build.dir}/classes/test/conf">
<fileset dir="conf"/>

View File

@ -20,5 +20,5 @@
<pathelement location="${build.dir}/classes/java"/>
</path>
<target name="init" depends="contrib-build.init,jar-grouping"/>
<target name="init" depends="module-build.init,jar-grouping"/>
</project>