You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by yo...@apache.org on 2004/08/29 20:14:41 UTC

cvs commit: jakarta-tomcat-5/resources/deployer build.xml

yoavs       2004/08/29 11:14:41

  Modified:    .        BUILDING.txt RELEASE-NOTES build.xml
               resources/deployer build.xml
  Log:
  Made compile.debug and compile.deprecation consistent and used in all javac tasks.
  
  Revision  Changes    Path
  1.33      +5 -5      jakarta-tomcat-5/BUILDING.txt
  
  Index: BUILDING.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/BUILDING.txt,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- BUILDING.txt	8 Sep 2003 10:12:00 -0000	1.32
  +++ BUILDING.txt	29 Aug 2004 18:14:40 -0000	1.33
  @@ -1,10 +1,10 @@
   $Id$
   
   
  -                 Building The Tomcat 5 Servlet/JSP Container
  +                 Building The Tomcat 5.5 Servlet/JSP Container
                    ===========================================
   
  -This subproject contains the source code for Tomcat 5, a container that
  +This subproject contains the source code for Tomcat 5.5, a container that
   implements the Servlet 2.4 and JSP 2.0 specifications from the Java
   Community Process <http://www.jcp.org/>.  In order to build a binary
   distribution version of the container from a source distribution, 
  @@ -47,12 +47,12 @@
     available, which will be used to actually perform the build.
   
   
  -(2) Building Tomcat 5
  +(2) Building Tomcat 5.5
   
   (2.1) Download main build script and build binary distribution
   
   * Download the main build.xml script from:
  -  http://jakarta.apache.org/tomcat/tomcat-5.0-doc/build.xml
  +  http://jakarta.apache.org/tomcat/tomcat-5.5-doc/build.xml
   
   * Create a new directory, and copy the newly download build.xml to it. This
     directory will be referred to as the ${tomcat.source} directory in the rest
  
  
  
  1.19      +14 -14    jakarta-tomcat-5/RELEASE-NOTES
  
  Index: RELEASE-NOTES
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/RELEASE-NOTES,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- RELEASE-NOTES	15 Jun 2004 18:42:06 -0000	1.18
  +++ RELEASE-NOTES	29 Aug 2004 18:14:40 -0000	1.19
  @@ -11,9 +11,9 @@
   KNOWN ISSUES IN THIS RELEASE:
   ============================
   
  -* Tomcat 5.0 and JNI Based Applications
  -* Tomcat 5.0 Standard APIs Available
  -* Tomcat 5.0 and XML Parsers
  +* Tomcat 5.5 and JNI Based Applications
  +* Tomcat 5.5 Standard APIs Available
  +* Tomcat 5.5 and XML Parsers
   * Web application reloading and static fields in shared libraries
   * JAVAC leaking memory
   * Tomcat on Linux
  @@ -26,7 +26,7 @@
   
   
   -------------------------------------
  -Tomcat 5.0 and JNI Based Applications:
  +Tomcat 5.5 and JNI Based Applications:
   -------------------------------------
   
   Applications that require native libraries must ensure that the libraries have
  @@ -48,10 +48,10 @@
   
   
   ----------------------------------
  -Tomcat 5.0 Standard APIs Available:
  +Tomcat 5.5 Standard APIs Available:
   ----------------------------------
   
  -A standard installation of Tomcat 5 makes all of the following APIs available
  +A standard installation of Tomcat 5.5 makes all of the following APIs available
   for use by web applications (by placing them in "common/lib" or "shared/lib"):
   * ant.jar (Apache Ant 1.6 or later)
   * commons-collections*.jar (Commons Collections 2.1 or later)
  @@ -72,7 +72,7 @@
   putting unpacked classes into a "classes" directory (not created by default),
   or by placing them in JAR files in the "lib" directory.
   
  -Tomcat 5.0 also makes Xerces 2 and the Commons Logging API (release 1.0.3)
  +Tomcat 5.5 also makes Xerces 2 and the Commons Logging API (release 1.0.3 or later)
   available to web applications.
   
   Please note that the JMX API is available to applications as well.  The jmx.jar
  @@ -82,10 +82,10 @@
   
   
   --------------------------
  -Tomcat 5.0 and XML Parsers:
  +Tomcat 5.5 and XML Parsers:
   --------------------------
   
  -As described above, Tomcat 5.0 makes an XML parser (and many other standard
  +As described above, Tomcat 5.5 makes an XML parser (and many other standard
   APIs) available to web applications.  This parser is also used internally
   to parse web.xml files and the server.xml configuration file.  If you wish,
   you may replace the "xercesImpl.jar" file in "common/endorsed" with another
  @@ -148,7 +148,7 @@
   
   Having CGI and SSI available to web applications created security problems when
   using a security manager (as a malicious web application could use them to
  -sidestep the security manager access control). In Tomcat 5.0, they have been
  +sidestep the security manager access control). In Tomcat 5.5, they have been
   disabled by default, as our goal is to provide a fully secure default
   configuration. However, CGI and SSI remain available.
   
  @@ -206,7 +206,7 @@
   repositories were:
   jar:file:${catalina.home}/webapps/examples/WEB-INF/lib/driver.jar!/-
   
  -In Tomcat 4.1 and 5.0, they should be:
  +In Tomcat 4.1 and 5.x, they should be:
   file:${catalina.home}/webapps/examples/WEB-INF/lib/driver.jar
   
   
  @@ -237,8 +237,8 @@
   Viewing the Tomcat Change Log 
   ------------------------
   
  -The Change Log for tomcat 5 is available at
  -http://jakarta.apache.org/tomcat/tomcat-5.0-doc/changelog.html.
  +The Change Log for tomcat 5.5 is available at
  +http://jakarta.apache.org/tomcat/tomcat-5.5-doc/changelog.html.
   
   -------------------
   When all else fails:
  
  
  
  1.202     +15 -5     jakarta-tomcat-5/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v
  retrieving revision 1.201
  retrieving revision 1.202
  diff -u -r1.201 -r1.202
  --- build.xml	26 Aug 2004 17:03:34 -0000	1.201
  +++ build.xml	29 Aug 2004 18:14:40 -0000	1.202
  @@ -65,6 +65,8 @@
     <!-- Some compilers will disable debugging if true. And it doesn't do anything 
          in most cases -->
     <property name="compile.optimize"     value="false"/>
  +  <property name="compile.debug"        value="true" />
  +  <property name="compile.deprecation"  value="false" />
   
   
     <!-- =================== DETECT: Display configuration ================== -->
  @@ -335,7 +337,9 @@
   
       <javac destdir="${ROOT.base}/WEB-INF/classes"
              optimize="off"
  -           debug="on" failonerror="false"
  +           debug="${compile.debug}" 
  +           deprecation="${compile.deprecation}"
  +           failonerror="false"
              srcdir="${ROOT.base}/WEB-INF/src" 
   	   excludes="**/*.smap">
         <classpath>
  @@ -360,7 +364,9 @@
   
       <javac destdir="${jsp-examples.base}/WEB-INF/classes"
              optimize="off"
  -           debug="on" failonerror="false"
  +           debug="${compile.debug}"
  +           deprecation="${compile.deprecation}"
  +           failonerror="false"
              srcdir="${jsp-examples.base}/WEB-INF/src" 
   	   excludes="**/*.smap">
         <classpath>
  @@ -383,7 +389,9 @@
   
       <javac destdir="${admin.base}/WEB-INF/classes"
              optimize="off"
  -           debug="on" failonerror="false"
  +           debug="${compile.debug}"
  +           deprecation="${compile.deprecation}"
  +           failonerror="false"
              srcdir="${admin.base}/WEB-INF/src" 
   	   excludes="**/*.smap">
         <classpath>
  @@ -569,9 +577,11 @@
       </move>
     	<mkdir dir="${tomcat-dbcp.home}/classes"/>
       <javac destdir="classes"
  -           optimize="off" debug="on"
  +           optimize="off"
  +           debug="${compile.debug}"
  +           deprecation="${compile.deprecation}"
              sourcepath="${tomcat-dbcp.home}/src/java"
  -          srcdir="src/java" >
  +           srcdir="src/java" >
         <include name="**" />
       </javac>
       <jar jarfile="${tomcat-dbcp.jar}"
  
  
  
  1.6       +3 -1      jakarta-tomcat-5/resources/deployer/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/resources/deployer/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	1 Jun 2004 19:22:09 -0000	1.5
  +++ build.xml	29 Aug 2004 18:14:41 -0000	1.6
  @@ -51,7 +51,9 @@
   
       <javac destdir="${webapp.path}/WEB-INF/classes"
              optimize="off"
  -           debug="on" failonerror="false"
  +           debug="${compile.debug}"
  +           deprecation="${compile.deprecation}"
  +           failonerror="false"
              srcdir="${webapp.path}/WEB-INF/classes"
              encoding="UTF-8"
   	   excludes="**/*.smap">
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org