Hi

When I tried to build commons-logging (pulled from CVS) I needed to find the right version of the avalon-framework. The project.xml file says to use version 4.0.

When I ran the unit-tests they wanted the class org.apache.avalon.framework.logger.ConsoleLogger, and that is not included in 4.0. After some digging in the CVS I found the class in question in version 4.1.3.

The attached patch fixes the project.xml file.
--
Dennis Lundberg
Index: logging/project.xml
===================================================================
RCS file: /home/cvspublic/jakarta-commons/logging/project.xml,v
retrieving revision 1.9
diff -u -r1.9 project.xml
--- logging/project.xml 14 May 2003 10:47:56 -0000      1.9
+++ logging/project.xml 6 Jan 2004 23:45:49 -0000
@@ -36,7 +36,7 @@
     
     <dependency>
       <id>avalon-framework</id>
-      <version>4.0</version>
+      <version>4.1.3</version>
     </dependency>
     
   </dependencies>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to