yoavs 2004/09/01 17:47:42
Modified: catalina build.xml
webapps/docs changelog.xml
Log:
Builds successfully on JDK 5.0.
Revision Changes Path
1.71 +9 -3 jakarta-tomcat-catalina/catalina/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/build.xml,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- build.xml 1 Sep 2004 22:56:27 -0000 1.70
+++ build.xml 2 Sep 2004 00:47:42 -0000 1.71
@@ -595,7 +595,9 @@
<target name="build-catalina-core">
<!-- Compile internal server components -->
<javac srcdir="src/share" destdir="${classes.dir}"
- debug="${compile.debug}" deprecation="${compile.deprecation}"
+ debug="${compile.debug}"
+ deprecation="${compile.deprecation}"
+ source="${compile.source}"
optimize="${compile.optimize}"
excludes="**/CVS/**">
<classpath refid="catalina.classpath" />
@@ -634,8 +636,10 @@
<target name="build-catalina-optional" unless="build.tomcat.base">
<!-- Compile internal server components -->
<javac srcdir="src/share" destdir="${classes.dir}"
- debug="${compile.debug}" deprecation="${compile.deprecation}"
+ debug="${compile.debug}"
+ deprecation="${compile.deprecation}"
optimize="${compile.optimize}"
+ source="${compile.source}"
excludes="**/CVS/**">
<classpath refid="catalina.classpath" />
<exclude name="org/apache/naming/factory/MailSessionFactory.java"
@@ -757,7 +761,9 @@
<!-- Compile unit test classes -->
<javac srcdir="src/test" destdir="${catalina.build}/tests"
deprecation="${compile.deprecation}"
- debug="${compile.debug}" optimize="off"
+ debug="${compile.debug}"
+ optimize="off"
+ source="${compile.source}"
excludes="**/CVS/**">
<classpath refid="test.classpath"/>
</javac>
1.97 +3 -0 jakarta-tomcat-catalina/webapps/docs/changelog.xml
Index: changelog.xml
===================================================================
RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- changelog.xml 1 Sep 2004 22:04:28 -0000 1.96
+++ changelog.xml 2 Sep 2004 00:47:42 -0000 1.97
@@ -29,6 +29,9 @@
<section name="Tomcat 5.5.1 (yoavs)">
<subsection name="General">
<changelog>
+ <update>
+ Tomcat 5.5 can be built on JDK 5.0. (yoavs)
+ </update>
</changelog>
</subsection>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]