patrickl    2002/07/30 13:01:32

  Modified:    .        BUILDING.txt build.properties.default build.xml
  Removed:     .        download.properties
  Log:
  Remove default.properties since it was incomplete and contained properties that are 
already in build.properties.default. Also, made Xerces 2.0.2 or higher required since 
it is required for XML schema support.
  
  Revision  Changes    Path
  1.3       +2 -13     jakarta-tomcat-5/BUILDING.txt
  
  Index: BUILDING.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/BUILDING.txt,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BUILDING.txt      29 Jul 2002 19:04:35 -0000      1.2
  +++ BUILDING.txt      30 Jul 2002 20:01:32 -0000      1.3
  @@ -84,7 +84,7 @@
   * This is optional with JDK 1.3 or later.
   
   
  -(4) Download and Install the Xerces 1.4.4 or higer Distribution
  +(4) Download and Install the Xerces 2.0.2 or Higher Distribution
   
   * Download a binary distribution from:
   
  @@ -93,17 +93,6 @@
   * Unpack the binary distribution into a convenient location so that the
     distribution resides in its own directory (conventionally named
     "xerces-x_y_z").
  -
  -* In your build.properties file, you will need to set properties differently
  -  based on which version of Xerces you are using:
  -  - For versions 1.4.4 up through and including 2.0.0beta3,
  -    set the "xerces.jar" property to point at the full
  -    pathname of the corresponding file.
  -  - For version 2.0.0beta4 and later, set the "xmlParserAPIs.jar"
  -    and "xercesImpl.jar" properties to point at the corresponding
  -    files
  -  - If you have defined both sets of properties, the newer (two files)
  -    packaging will be loaded into the Tomcat you are building
   
   * This is optional with JDK 1.4 or later.
   
  
  
  
  1.6       +23 -20    jakarta-tomcat-5/build.properties.default
  
  Index: build.properties.default
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/build.properties.default,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.properties.default  29 Jul 2002 19:04:35 -0000      1.5
  +++ build.properties.default  30 Jul 2002 20:01:32 -0000      1.6
  @@ -10,6 +10,16 @@
   # -----------------------------------------------------------------------------
   
   
  +# ----- Proxy to download subproject -----
  +#proxy.host=proxy.domain
  +#proxy.port=8080
  +#proxy.use=on
  +
  +
  +# ----- CVS root for the jakarta repositories -----
  +cvsroot=":pserver:[EMAIL PROTECTED]:/home/cvspublic"
  +
  +
   # ----- Compile Control Flags -----
   compile.debug=on
   compile.deprecation=off
  @@ -63,6 +73,16 @@
   
commons-collections.loc=http://jakarta.apache.org/builds/jakarta-commons/release/commons-collections/v2.0/commons-collections-2.0.tar.gz
   
   
  +# ----- Commons Daemon, version 20020730 or later -----
  +commons-daemon.home=${base.path}/commons-daemon
  +commons-daemon.lib=${commons-daemon.home}
  +commons-daemon.jar=${commons-daemon.lib}/commons-daemon.jar
  +commons-daemon.bin=${commons-daemon.home}/bin
  +commons-daemon-launcher.jar=${commons-daemon.bin}/commons-launcher.jar
  
+commons-daemon-launcher-bootstrap.class=${commons-daemon.bin}/LauncherBootstrap.class
  
+commons-daemon.loc=http://jakarta.apache.org/builds/jakarta-commons/nightly/commons-daemon/commons-daemon-20020730.tar.gz
  +
  +
   # ----- Commons Digester, version 1.2 or later -----
   commons-digester.home=${base.path}/commons-digester-1.2
   commons-digester.lib=${commons-digester.home}
  @@ -94,20 +114,13 @@
   
regexp.loc=http://jakarta.apache.org/builds/jakarta-regexp/release/v1.2/jakarta-regexp-1.2.tar.gz
   
   
  -# ----- Xerces XML Parser, version 1.4.4 to 2.0.0 Beta 4 -----
  +# ----- Xerces XML Parser, version 2.0.2 or later -----
   # Note: Optional with JDK 1.4+
  -#xerces.home=${base.path}/xerces-1_4_4
  -#xerces.lib=${xerces.home}
  -#xerces.jar=${xerces.lib}/xerces.jar
  -
  -
  -# ----- Xerces XML Parser, version 2.0.0 or later -----
  -# Note: Optional with JDK 1.4+, or if Xerces 1.x is present
   xerces.home=${base.path}/xerces-2_0_2
   xerces.lib=${xerces.home}
  -xerces.loc=http://xml.apache.org/dist/xerces-j/Xerces-J-bin.2.0.2.tar.gz
   xercesImpl.jar=${xerces.lib}/xercesImpl.jar
   xmlParserAPIs.jar=${xerces.lib}/xmlParserAPIs.jar
  +xerces.loc=http://xml.apache.org/dist/xerces-j/Xerces-J-bin.2.0.2.tar.gz
   
   
   # ----- JSTL 1.0 -----
  @@ -126,16 +139,6 @@
   activation.home=${base.path}/jaf-1.0.1
   activation.lib=${activation.home}
   activation.jar=${activation.lib}/activation.jar
  -
  -
  -# ----- Commons Daemon, version 20020730 or later -----
  -commons-daemon.home=${base.path}/commons-daemon
  -commons-daemon.lib=${commons-daemon.home}
  -commons-daemon.jar=${commons-daemon.lib}/commons-daemon.jar
  -commons-daemon.bin=${commons-daemon.home}/bin
  -commons-daemon-launcher.jar=${commons-daemon.bin}/commons-launcher.jar
  
-commons-daemon-launcher-bootstrap.class=${commons-daemon.bin}/LauncherBootstrap.class
  -commons-daemon.loc=jakarta-commons-sandbox/daemon
   
   
   # ----- Commons DBCP, version 20011030 or later -----
  
  
  
  1.9       +0 -1      jakarta-tomcat-5/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build.xml 30 Jul 2002 03:57:43 -0000      1.8
  +++ build.xml 30 Jul 2002 20:01:32 -0000      1.9
  @@ -5,7 +5,6 @@
   
     <!-- See "build.properties.sample" in the top level directory for all     -->
     <!-- property values you must customize for successful building!!!        -->
  -  <property file="download.properties"/>
     <property file="build.properties"/>
     <property file="${user.home}/build.properties"/>
     <property file="build.properties.default"/>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to