Download dbpool-7.0.jar file

Introduction

You can download dbpool-7.0.jar in this page.

License

DBPool (BSD-style) License

Type List

dbpool-7.0.jar file has the following types.

LICENSE-SLF4J.txt
LICENSE.txt
META-INF/MANIFEST.MF
META-INF/maven/net.snaq/dbpool/pom.properties
META-INF/maven/net.snaq/dbpool/pom.xml
NOTICE.txt
snaq.db.AutoCommitValidator.class
snaq.db.CacheConnection.class
snaq.db.CachedCallableStatement.class
snaq.db.CachedPreparedStatement.class
snaq.db.CachedStatement.class
snaq.db.ConnectionPool.class
snaq.db.ConnectionPoolEvent.class
snaq.db.ConnectionPoolEventAdapter.class
snaq.db.ConnectionPoolListener.class
snaq.db.ConnectionPoolManager.class
snaq.db.ConnectionPoolManagerEvent.class
snaq.db.ConnectionPoolManagerListener.class
snaq.db.ConnectionValidator.class
snaq.db.DBPoolDataSource.class
snaq.db.DBPoolDataSourceFactory.class
snaq.db.DBPoolServletContextListener.class
snaq.db.JDBCInfo.class
snaq.db.PasswordDecoder.class
snaq.db.QueryValidator.class
snaq.db.RotDecoder.class
snaq.db.SQLUpdate.class
snaq.db.Select1Validator.class
snaq.db.SimpleQueryValidator.class
snaq.db.StatementListener.class
snaq.util.EventDispatcher.class
snaq.util.EventNotifier.class
snaq.util.JmxUtils.class
snaq.util.ObjectPool.class
snaq.util.ObjectPoolEvent.class
snaq.util.ObjectPoolEventAdapter.class
snaq.util.ObjectPoolListener.class
snaq.util.PoolTracer.class
snaq.util.Reusable.class
snaq.util.TimeWrapper.class
snaq.util.logging.DBPoolLegacyFormatter.class
snaq.util.logging.LogUtil.class
snaq.util.logging.TerseFormatter.class

Pom

dbpool-7.0.pom file content.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>net.snaq</groupId>
  <artifactId>dbpool</artifactId>
  <version>7.0</version>
  <packaging>jar</packaging>
  <name>DBPool</name>
  <description>JDBC connection pooling utility, supporting time-based expiry, statement caching, connection validation, and easy configuration using a pool manager.</description>
  <url>http://www.snaq.net/java/DBPool/</url>
  <licenses>
    <license>
      <name>DBPool (BSD-style) License</name>
      <url>https://raw.github.com/gwinstanley/DBPool/master/LICENSE.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>https://github.com/gwinstanley/DBPool</url>
    <connection>https://github.com/gwinstanley/DBPool</connection>
  </scm>
  <developers>
    <developer>
      <name>Giles Winstanley</name>
      <email>support@snaq.net</email>
    </developer>
  </developers>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>javax</groupId>
      <artifactId>javaee-web-api</artifactId>
      <version>6.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.10</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.2</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

POM Entry

<dependency>
   <groupId>net.snaq</groupId>
   <artifactId>dbpool</artifactId>
   <version>7.0</version>
</dependency>

Download

If you think the following dbpool-7.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download dbpool-7.0.jar file




PreviousNext

Related