DbUtils.
A package of Java utility classes for easing JDBC development.
Here is the list of declaration for commons-dbutils. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-dbutils</groupId> <artifactId>commons-dbutils</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for commons-dbutils is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: /LICENSE.txt.
The commons-dbutils-1.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
The following plugins are used in the commons-dbutils-1.1.jar
The following packages are defined in the commons-dbutils-1.1.jar
org.apache.commons.dbutils org.apache.commons.dbutils.handlers org.apache.commons.dbutils.wrappers
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <modelVersion>4.0.0</modelVersion> <groupId>commons-dbutils</groupId> <artifactId>commons-dbutils</artifactId> <name>DbUtils</name> <version>1.1</version> <description>A package of Java utility classes for easing JDBC development</description> <url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url> <issueManagement> <url>http://issues.apache.org/jira/</url> </issueManagement> <ciManagement> <notifiers> <notifier> <configuration> <address>commons-dev@jakarta.apache.org</address> </configuration> </notifier> </notifiers> </ciManagement> <inceptionYear>2002</inceptionYear> <mailingLists> <mailingList> <name>Commons Dev List</name> <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/</archive> </mailingList> <mailingList> <name>Commons User List</name> <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive> </mailingList> </mailingLists> <contributors> <contributor> <name>P??ter Bagyinszki</name> <roles> <role>Java Developer</role> </roles> </contributor> <contributor> <name>Alan Canon</name> <roles> <role>Java Developer</role> </roles> </contributor> <contributor> <name>Stefan Fleiter</name> <email>stefan.fleiter@web.de</email> <roles> <role>Java Developer</role> </roles> </contributor> <contributor> <name>Adkins Kendall</name> <roles> <role>Java Developer</role> </roles> </contributor> <contributor> <name>Markus Khouri</name> <email>mkhouri.list@gmail.com</email> <roles> <role>Documentation</role> </roles> </contributor> <contributor> <name>Uli Kleeberger</name> <email>ukleeberger@web.de</email> <roles> <role>Java Developer</role> </roles> </contributor> <contributor> <name>Piotr Lakomy</name> <email>piotrl@cft-inc.net</email> <roles> <role>Java Developer</role> </roles> </contributor> <contributor> <name>Corby Page</name> <roles> <role>Java Developer</role> </roles> </contributor> <contributor> <name>Michael Schuerig</name> <email>michael@schuerig.de</email> <roles> <role>Java Developer</role> </roles> </contributor> <contributor> <name>Norris Shelton</name> <email>norrisshelton@yahoo.com</email> <roles> <role>Java Developer</role> </roles> </contributor> </contributors> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>/LICENSE.txt</url> </license> </licenses> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</connection> <url>http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</url> </scm> <organization> <name>The Apache Software Foundation</name> <url>http://jakarta.apache.org</url> </organization> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <resources> <resource> <targetPath>META-INF</targetPath> <directory>${basedir}</directory> <includes> <include>NOTICE.txt</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/BaseTestCase.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-xdoc-plugin</artifactId> <version>1.9.2</version> <configuration> <comment><strong>Site Only</strong> - v1.9.2 (minimum) required for building the Site documentation.</comment> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>default</id> <name>Default Repository</name> <url>file:///www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</url> </repository> <site> <id>default</id> <name>Default Site</name> <url>scp://jakarta.apache.org//www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url> </site> <status>converted</status> </distributionManagement> </project>