Reads properties from ../build.properties as well.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130446 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rodney Waldhoff 2001-04-22 16:38:58 +00:00
parent 6f129ef861
commit b1f949bf50
1 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<!-- $Id: build.xml,v 1.2 2001/04/16 22:39:20 geirm Exp $ -->
<!-- $Id: build.xml,v 1.3 2001/04/22 16:38:58 rwaldhoff Exp $ -->
<project name="commons-collections" default="test" basedir=".">
<!-- patternset describing files to be copied from the doc directory -->
@ -30,8 +30,14 @@
<property name="user-propfile" value="${user.home}/build.properties"/>
<property file="${user-propfile}"/>
<property name="user-classpath" value=""/>
<!-- read properties from the build.properties, if any -->
<property file="${basedir}/build.properties"/>
<property name="component-propfile" value="${basedir}/build.properties"/>
<property file="${component-propfile}"/>
<!-- read properties from the commons build.properties, if any -->
<property name="commons-propfile" value="${basedir}/../build.properties"/>
<property file="${commons-propfile}"/>
<!-- command line classpath, if any -->
<property name="cp" value=""/>