billbarker 02/03/11 20:34:56 Modified: http11 build.xml Log: Fix classpath problem for 3.3.x. The StringManager needs to load from the "common" ClassLoader, but the rest of the Coyote classes are in the "container" ClassLoader. This creates a small jar to put in "common" to find the properties. Revision Changes Path 1.5 +5 -1 jakarta-tomcat-connectors/http11/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/http11/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- build.xml 31 Jan 2002 18:42:57 -0000 1.4 +++ build.xml 12 Mar 2002 04:34:56 -0000 1.5 @@ -3,7 +3,7 @@ <!-- "Coyote" connector framework for Jakarta Tomcat - $Id: build.xml,v 1.4 2002/01/31 18:42:57 remm Exp $ + $Id: build.xml,v 1.5 2002/03/12 04:34:56 billbarker Exp $ --> @@ -158,6 +158,10 @@ <jar jarfile="${build.home}/lib/tomcat-${component.name}.jar" basedir="${build.home}/classes" manifest="${build.home}/conf/MANIFEST.MF"/> + <jar jarfile="${build.home}/lib/tomcat33-resource.jar" + basedir="${build.home}/classes" + includes="**/*.properties" /> + <copy file="${tomcat-util.jar}" tofile="${build.home}/lib/tomcat-util.jar" /> <copy file="${tomcat-coyote.jar}"
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>