You are viewing a plain text version of this content. The canonical link for it is here.
Posted to regexp-dev@jakarta.apache.org by gh...@apache.org on 2001/04/13 00:03:07 UTC

cvs commit: jakarta-regexp/build build-regexp.xml

gholam      01/04/12 15:03:07

  Modified:    build    build-regexp.xml
  Log:
  Added a few property imports users can override some settings.
  Is after the setting they should not be able to change eg project etc.
  
  Removed the build.compiler property from the build script.
  I prefer to have a global setting for this in ~/.ant/compiler.properties
  which can be overriden in this case by a value in ~/.ant/jakarta-regexp.properties.
  
  Revision  Changes    Path
  1.9       +4 -2      jakarta-regexp/build/build-regexp.xml
  
  Index: build-regexp.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-regexp/build/build-regexp.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build-regexp.xml	2001/04/10 11:28:15	1.8
  +++ build-regexp.xml	2001/04/12 22:03:07	1.9
  @@ -8,13 +8,15 @@
       <!-- =================================================================== -->
       <!-- Initializes some variables                                          -->
       <!-- =================================================================== -->
  -    <property file="${user.home}/.jakarta-regexp.properties"/>
       <property name="ant.home" value="."/>
       <property name="Name" value="Jakarta-Regexp"/>
       <property name="year" value="2001"/>
       <property name="version" value="1.3-dev"/>
       <property name="project" value="jakarta-regexp"/>
  -    <property name="build.compiler" value="jikes"/>
  +
  +    <property file="${user.home}/.ant/jakarta-regexp.properties"/>
  +    <property file="${user.home}/.ant/compiler.properties"/>
  +
       <property name="build.dir" value="../bin"/>
       <property name="build.src" value="${build.dir}/src"/>
       <property name="build.dest" value="${build.dir}/classes"/>
  
  
  

Re: cvs commit: jakarta-regexp/build build-regexp.xml

Posted by Michael McCallum <gh...@xtra.co.nz>.
>        <!--
> =================================================================== -->
> <!-- Initializes some variables                                         
> --> <!--
> =================================================================== -->  
>  - <property file="${user.home}/.jakarta-regexp.properties"/>

I thought i had added it before??? Wasnt in the relevant commit email though?