dbpool
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.facebook.airlift</groupId> <artifactId>dbpool</artifactId> <version>0.220</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>dbpool</artifactId> <packaging>jar</packaging> <name>dbpool</name> <parent> <groupId>com.facebook.airlift</groupId> <artifactId>airlift</artifactId> <version>0.220</version> </parent> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> <project.build.targetJdk>17</project.build.targetJdk> </properties> <dependencies> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>discovery</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>configuration</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>stats</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>units</artifactId> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <dependency> <groupId>org.weakref</groupId> <artifactId>jmxutils</artifactId> </dependency> <!-- for testing --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>testing</artifactId> <scope>test</scope> </dependency> </dependencies> </project>