This is an automated email from the ASF dual-hosted git repository. ggregory pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git.
from 6442dc8 Fix the site's source repository link. new 8431c21 [Checkstyle] Move DriverConnectionFactory creation from BasicDataSource to a factory method _in_ DriverConnectionFactory. This moves the factory code closer to home and fixes a checkstyle violation that had BasicDataSource over 2,500 lines of source code. new bdc5697 Javadoc. new 43ec6a9 Better lvar names. new fee15e8 Add license header for Apache RAT check. new dbb0f09 Fix site link. new 29318b6 Update plugins and start preparing for the next release. new cdf40bb Javadoc. new dba0844 [Checkstyle] Move DriverConnectionFactory creation from BasicDataSource to a factory method _in_ DriverConnectionFactory. This moves the factory code closer to home and fixes a checkstyle violation that had BasicDataSource over 2,500 lines of source code. new 578129f Javadoc. new 34cb96a Add @SuppressWarnings. new cf295bd Add @SuppressWarnings. new 7b13299 Prepare for the next release. new fdc855e Split out factory code out of BasicDataSource in small factory classes. This helps reduce the size and complexity of BasicDataSource and fixes a Checkstyle violation for the class being too big. The 13 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: pom.xml | 10 +- src/conf/eclipse/formatter.xml | 16 ++ .../org/apache/commons/dbcp2/BasicDataSource.java | 191 +++++++-------------- .../commons/dbcp2/BasicDataSourceFactory.java | 4 +- .../commons/dbcp2/ConnectionFactoryFactory.java | 79 +++++++++ .../apache/commons/dbcp2/DelegatingConnection.java | 34 ++-- .../commons/dbcp2/DriverConnectionFactory.java | 2 + .../org/apache/commons/dbcp2/DriverFactory.java | 81 +++++++++ .../dbcp2/datasources/InstanceKeyDataSource.java | 20 ++- .../datasources/InstanceKeyDataSourceFactory.java | 2 +- src/site/site.xml | 1 + src/site/xdoc/index.xml | 2 + src/site/xdoc/mail-lists.xml | 2 +- .../java/org/apache/commons/dbcp2/TestJndi.java | 12 +- .../commons/dbcp2/TesterCallableStatement.java | 2 +- 15 files changed, 287 insertions(+), 171 deletions(-) create mode 100644 src/main/java/org/apache/commons/dbcp2/ConnectionFactoryFactory.java create mode 100644 src/main/java/org/apache/commons/dbcp2/DriverFactory.java