dlr         2003/03/27 10:40:28

  Modified:    .        default.properties build.xml
  Removed:     .        build.properties
  Log:
  Forward ported from the XMLRPC_1_2_BRANCH:
  
  * build.properties
    Removed in favor of default.properties, which is a copy of this
    file's CVS ,v file (as of revision 1.9).
  
  * build.xml
    Default properties are now stored in default.properties, while
    build.properties is for local overrides of the defaults.
  
  * default.properties
    Copied from CVS revision 1.9 of build.properties.  Updated header
    comments.
  
  http://issues.apache.org/bugzilla/show_bug.cgi?id=17789
  
  Revision  Changes    Path
  1.10      +4 -4      xml-rpc/default.properties
  
  Index: default.properties
  ===================================================================
  RCS file: /home/cvs/xml-rpc/default.properties,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -u -r1.9 -r1.10
  --- default.properties        15 Aug 2002 16:30:04 -0000      1.9
  +++ default.properties        27 Mar 2003 18:40:28 -0000      1.10
  @@ -1,9 +1,9 @@
   # -------------------------------------------------------------------
  -# B U I L D  P R O P E R T I E S
  +# D E F A U L T   P R O P E R T I E S
   # -------------------------------------------------------------------
  -# These properties are used by the XML-RPC build, you may override
  -# any of these default values by placing property values in
  -# your ${user.home}/build.properties file.
  +# These properties are used by the XML-RPC build.  You may override
  +# any of these default values by placing property values in your
  +# local build.properties and ${user.home}/build.properties files.
   # -------------------------------------------------------------------
   
   name = XML-RPC
  
  
  
  1.23      +4 -1      xml-rpc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-rpc/build.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -u -r1.22 -r1.23
  --- build.xml 16 Mar 2003 06:56:53 -0000      1.22
  +++ build.xml 27 Mar 2003 18:40:28 -0000      1.23
  @@ -5,11 +5,14 @@
     <!-- Properties which are not allowed to be overridden -->
     <property name="version" value="2.0-a1-dev"/>
   
  +  <!-- Allow any locally-specified values to override the defaults -->
  +  <property file="build.properties" />
  +
     <!-- Allow any user specific values to override the defaults -->
     <property file="${user.home}/build.properties" />
   
     <!-- Set default values for the build -->
  -  <property file="build.properties" />
  +  <property file="default.properties" />
   
     <!-- Construct compile classpath -->
     <path id="classpath">
  
  
  

Reply via email to