Build root property was not being used.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352303 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-03-31 06:54:35 +00:00
parent d3356776ee
commit 479235141c

View File

@ -3,6 +3,8 @@
<project default="poibrowser" basedir="../../" name="POIBrowser build">
<property name="build.root" value="build"/>
<!-- =================================================================== -->
<!-- GUI Run Target -->
<!-- =================================================================== -->
@ -14,8 +16,8 @@
<java classname="org.apache.poi.contrib.poibrowser.POIBrowser" fork="true">
<arg value="${contrib.input.selection}"/>
<classpath>
<pathelement location="build/jakarta-poi/classes"/>
<pathelement location="build/jakarta-poi/contrib/classes"/>
<pathelement location="${build.root}/jakarta-poi/classes"/>
<pathelement location="${build.root}/jakarta-poi/contrib/classes"/>
</classpath>
</java>
</target>