craigmcc    01/05/21 15:36:51

  Modified:    .        .cvsignore build.xml
  Log:
  Enable use of the revised build process (run "ant dist" instead of
  "./build.sh dist" and no longer use environment variables.  The old
  mechanism still works if you use "build.bat" and "build.sh", but they will
  be removed at some future point in time.
  
  Revision  Changes    Path
  1.2       +1 -0      jakarta-servletapi-4/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi-4/.cvsignore,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- .cvsignore        2001/02/01 22:23:01     1.1
  +++ .cvsignore        2001/05/21 22:36:48     1.2
  @@ -1,3 +1,4 @@
   build
  +build.properties.sample
   dist
   lib
  
  
  
  1.3       +3 -1      jakarta-servletapi-4/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi-4/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml 2001/02/01 22:29:14     1.2
  +++ build.xml 2001/05/21 22:36:49     1.3
  @@ -2,7 +2,9 @@
   
     <!-- =================== Environmental Properties ======================= -->
   
  -  <property name="ant.home" value="../jakarta-ant" />
  +  <property file="build.properties"/>
  +  <property file="${user.home}/build.properties"/>
  +
     <property name="build.compiler"   value="classic"/>
     <property name="servletapi.build" value="build"/>
     <property name="servletapi.dist"  value="dist"/>
  
  
  

Reply via email to