rwaldhoff    01/04/22 09:38:58

  Modified:    collections build.xml
  Log:
  Reads properties from ../build.properties as well.
  
  Revision  Changes    Path
  1.3       +8 -2      jakarta-commons/collections/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml 2001/04/16 22:39:20     1.2
  +++ build.xml 2001/04/22 16:38:58     1.3
  @@ -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=""/>
  
  
  

Reply via email to