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

DO NOT REPLY [Bug 11895] New: - Build process breaks with new jakarta-tomcat-connectors/webapp/build.xml

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: tomcat-dev@jakarta.apache.org
        ReportedBy: andrewconrad@iname.com


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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>