- Made ant compile-core and build-contrib run again

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@656109 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2008-05-14 05:29:16 +00:00
parent b591e8c580
commit 6a8bef8c74
1 changed files with 5 additions and 6 deletions

View File

@ -29,18 +29,17 @@
<available property="queries.jar.present" type="file" file="${queries.jar}"/>
<path id="classpath">
<pathelement path="${lucene.jar}"/>
<pathelement path="${queries.jar}"/>
<pathelement path="${project.classpath}"/>
<pathelement path="${lucene.jar}"/>
<pathelement path="${queries.jar}"/>
<pathelement path="${project.classpath}"/>
</path>
<target name="compile-core" depends="build-queries, common.compile-core" />
<target name="build-queries" unless="queries.jar.present">
<echo>XML Parser building dependency ${queries.jar}</echo>
<ant antfile="../queries/build.xml" target="default" inheritall="false"/>
<echo>XML Parser building dependency ${queries.jar}</echo>
<ant antfile="../queries/build.xml" target="default" inheritall="true" dir="../queries" />
</target>
</project>