DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11895>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11895 Build process breaks with new jakarta-tomcat-connectors/webapp/build.xml Summary: Build process breaks with new jakarta-tomcat- connectors/webapp/build.xml Product: Tomcat 4 Version: 4.1.9 Platform: Other OS/Version: Other Status: NEW Severity: Major Priority: Other Component: Connector:Webapp AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The newest build.xml ver 1.13 breaks the build process (ant deploy). reverting to build.xml ver 1.12 is a work-around for the problem. The problem is that the old version looks for servlet.jar, and the new version looks for servlet-api.jar to add to the classpath. In the jk connector, both files are included into the classpath. patch included --- build.xml 14 Aug 2002 20:54:57 -0000 1.13 +++ build.xml 21 Aug 2002 11:58:10 -0000 @@ -30,6 +30,7 @@ <path id="classpath"> <pathelement location="${build.classes.dir}"/> <pathelement location="${catalina.home}/server/lib/catalina.jar"/> + <pathelement location="${catalina.home}/common/lib/servlet.jar"/> <pathelement location="${catalina.home}/common/lib/servlet-api.jar"/> </path> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>