mirror of https://github.com/apache/lucene.git
Fix building test-frameworks from contribs/modules: The classpath used during compilation did not include ANT when executed from modules or contribs, so the build failed. Now the test-framework gets its own compilation classpath, the ant.jar can even be removed completely from top-level.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1151782 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
23d22e4d47
commit
7221c4cee5
|
@ -32,7 +32,6 @@
|
|||
<path id="test.classpath">
|
||||
<path refid="classpath"/>
|
||||
<path refid="junit-path"/>
|
||||
<path refid="ant-path"/>
|
||||
<pathelement location="${build.dir}/classes/test-framework"/>
|
||||
<pathelement location="${build.dir}/classes/test"/>
|
||||
</path>
|
||||
|
|
|
@ -460,9 +460,14 @@
|
|||
<property name="core.compiled" value="true"/>
|
||||
</target>
|
||||
|
||||
<path id="test-framework.classpath">
|
||||
<path refid="ant-path"/>
|
||||
<path refid="test.classpath"/>
|
||||
</path>
|
||||
|
||||
<target name="compile-test-framework" depends="compile-core">
|
||||
<compile-test-macro srcdir="${tests-framework.src.dir}" destdir="${common.dir}/build/classes/test-framework"
|
||||
test.classpath="test.classpath"/>
|
||||
test.classpath="test-framework.classpath"/>
|
||||
</target>
|
||||
|
||||
<target name="compile-tools">
|
||||
|
|
Loading…
Reference in New Issue