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/07/29 20:05:32 UTC

DO NOT REPLY [Bug 11258] New: - commons-digester is not detected during build process

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=11258>.
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=11258

commons-digester is not detected during build process

           Summary: commons-digester is not detected during build process
           Product: Tomcat 4
           Version: 4.1.8
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Catalina
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: andrewconrad@msn.com


commons-digester.jar is not detected in build process, even though it is 
available because the detection process requires an instantiation of an object.

Digester can not be detected because it needs commons-collections and commons-
logging to instantiated.  fix <available> to include collections and logging 
in the classpath

--- build.xml	2002-07-29 13:36:28.000000000 -0400
+++ build.xml	2002-07-29 13:39:57.000000000 -0400
@@ -150,12 +150,12 @@
     <available property="dbcp.present"
      classname="org.apache.commons.dbcp.ConnectionFactory"
      classpath="${commons-dbcp.jar}"/>
-    <available property="digester.present"
-     classname="org.apache.commons.digester.Digester"
-     classpath="${commons-digester.jar}"/>
     <available property="logging.present"
      classname="org.apache.commons.logging.Log"
      classpath="${commons-logging.jar}"/>
+    <available property="digester.present"
+     classname="org.apache.commons.digester.Digester"
+     classpath="${commons-collections.jar};${commons-logging.jar};${commons-
digester.jar}"/>
     <available property="modeler.present"
      classname="org.apache.commons.modeler.Registry"
      classpath="${commons-modeler.jar}"/>

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>