I have a problem I need to debug by stepping into tomcat-dbcp (6.0.35). I tried downloading the Apache commons-dbcp source but it seems the version in Tomcat has the classes in different packages, so I can't get Eclipse to recognize the source.
I've searched the following areas: * the tomcat source zip (apache-tomcat-6.0.35-src.zip) -- it does not contain the dbcp source * archive.apache.org/dist/tomcat/tomcat-6 * maven-central; it has source jars for tomcat 7, but none for tomcat 6. * svn.apache.org/repos/asf/tomcat/tc6.0.x/tags/TOMCAT_6_0_35/java -- this does not contain the dbcp sources either * svn.apache.org/repos/asf/tomcat/tags/JDBC_POOL_1_1_0_1/ -- This looked promising, but on examination it does not seem to contain the source for the library in 6.0.35 The tomcat-dbcp.jar that came with 6.0.35 contains the following packages: org.apache.tomcat.dbcp.collections org.apache.tomcat.dbcp.dbcp org.apache.tomcat.dbcp.dbcp.cpdsadapter org.apache.tomcat.dbcp.datasources org.apache.tomcat.dbcp.jocl org.apache.tomcat.dbcp.pool org.apache.tomcat.dbcp.pool.impl So, where can I find the source for tomcat-dbcp 6.0.35?
