You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2002/03/29 09:50:29 UTC

cvs commit: jakarta-commons/latka build-maven.xml

dion        02/03/29 00:50:28

  Modified:    latka    build-maven.xml
  Log:
  Move to maven default properties search
  
  Revision  Changes    Path
  1.2       +7 -8      jakarta-commons/latka/build-maven.xml
  
  Index: build-maven.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/latka/build-maven.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build-maven.xml	29 Mar 2002 06:51:00 -0000	1.1
  +++ build-maven.xml	29 Mar 2002 08:50:28 -0000	1.2
  @@ -1,13 +1,12 @@
  -<!-- $Id: build-maven.xml,v 1.1 2002/03/29 06:51:00 dion Exp $ -->
  +<!-- $Id: build-maven.xml,v 1.2 2002/03/29 08:50:28 dion Exp $ -->
   <project name="commons-latka" default="build-java" basedir=".">
   
  -    <!-- read properties from the ${user.home}/propfile, if any -->
  -    <property name="user-propfile" value="${user.home}/build.properties"/>
  -    <property file="${user-propfile}"/>
  -    
  -    <!-- read properties from the build.properties, if any -->
  -    <property name="component-propfile" value="${basedir}/build.properties"/>
  -    <property file="${component-propfile}"/>
  +    <!-- Allow any user specific values to override the defaults -->
  +    <property file="${user.home}/build.properties" />
  +    <!-- Allow user defaults for this project -->
  +    <property file="build.properties" />
  +    <!-- Set default values for the build -->
  +    <property file="project.properties" />
   
       <!-- maven:start -->
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>