LUCENE-801: build lucene core and demo first, change classpath to use the build classes instead of the jar

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@507260 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2007-02-13 22:17:24 +00:00
parent 09930c9349
commit ee12ced8e7
2 changed files with 13 additions and 9 deletions

View File

@ -11,4 +11,6 @@ $Id:$
2. Added this file.
3. 2/11/07: LUCENE-790 and 788: Fixed Locale issue with date formatter. Fixed some minor issues with benchmarking by task. Added a dependency
on the Lucene demo to the build classpath. (Doron Cohen, Grant Ingersoll)
on the Lucene demo to the build classpath. (Doron Cohen, Grant Ingersoll)
4. 2/13/07: LUCENE-801: build.xml now builds Lucene core and Demo first and has classpath dependencies on the output of that build. (Doron Cohen, Grant Ingersoll)

View File

@ -85,11 +85,10 @@
<property name="collections.jar" value="commons-collections-3.1.jar"/>
<property name="logging.jar" value="commons-logging-1.0.4.jar"/>
<property name="bean-utils.jar" value="commons-beanutils-1.7.0.jar"/>
<property name="lucene-demos.jar" location="${common.dir}/build/lucene-demos-${version}.jar"/>
<path id="classpath">
<pathelement path="${lucene.jar}"/>
<pathelement path="${lucene-demos.jar}"/>
<pathelement path="${common.dir}/build/classes/java"/>
<pathelement path="${common.dir}/build/classes/demo"/>
<pathelement path="${basedir}/lib/${digester.jar}"/>
<pathelement path="${basedir}/lib/${collections.jar}"/>
<pathelement path="${basedir}/lib/${logging.jar}"/>
@ -98,10 +97,6 @@
<path id="run.classpath">
<path refid="classpath"/>
<pathelement location="${build.dir}/classes/java"/>
<pathelement path="${basedir}/lib/${digester.jar}"/>
<pathelement path="${basedir}/lib/${collections.jar}"/>
<pathelement path="${basedir}/lib/${logging.jar}"/>
<pathelement path="${basedir}/lib/${bean-utils.jar}"/>
</path>
<target name="run-standard" depends="compile,check-files,get-files" description="Run the standard baseline">
@ -130,5 +125,12 @@
</java>
</target>
<target name="init" depends="common.init,check-files"/>
<target name="compile-demo">
<subant target="compile-demo">
<fileset dir="${common.dir}" includes="build.xml"/>
</subant>
</target>
<target name="init" depends="common.init,compile-demo,check-files"/>
</project>