Hi,
the commons-dbcp failure (and some others) at
<http://gump.covalent.net/log/> are due to the fact that the generated
commons-pool.jar contains a classes directory as its top level
(i.e. it contains
classes/org/apache/commons/pool/BaseKeyedObjectPool.class instead of
org/apache/commons/pool/BaseKeyedObjectPool.class).
The appended patch should fix that
Stefan
Index: pool/build.xml
===================================================================
RCS file: /home/cvspublic/jakarta-commons/pool/build.xml,v
retrieving revision 1.20
diff -u -r1.20 build.xml
--- pool/build.xml 4 Oct 2003 18:10:27 -0000 1.20
+++ pool/build.xml 8 Oct 2003 06:43:18 -0000
@@ -125,7 +125,7 @@
<target name="build-jar" depends="compile">
<mkdir dir="${dist.dir}"/>
<jar jarfile="${dist.jar}">
- <fileset dir="${build.dir}"/>
+ <fileset dir="${build.classes.dir}"/>
<metainf dir="${basedir}" includes="LICENSE.txt"/>
<manifest>
<attribute name="Built-By" value="${user.name}"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]