firefly-db
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.fireflysource</groupId> <artifactId>firefly-db</artifactId> <version>5.0.0-dev6</version> </dependency>
<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>firefly-db</artifactId> <packaging>jar</packaging> <name>firefly-db</name> <url>http://www.fireflysource.com</url> <parent> <groupId>com.fireflysource</groupId> <artifactId>firefly-framework</artifactId> <version>5.0.0-dev6</version> <relativePath>../pom.xml</relativePath> </parent> <build> <finalName>firefly-db</finalName> <defaultGoal>install</defaultGoal> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <testResources> <testResource> <filtering>true</filtering> <directory>src/test/resources</directory> </testResource> </testResources> </build> <dependencies> <!-- Common --> <dependency> <groupId>com.fireflysource</groupId> <artifactId>firefly-common</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- metrics --> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> </dependency> <dependency> <groupId>com.github.vladimir-bukhtoyarov</groupId> <artifactId>rolling-metrics</artifactId> </dependency> <dependency> <groupId>org.hdrhistogram</groupId> <artifactId>HdrHistogram</artifactId> </dependency> <!-- db utils --> <dependency> <groupId>commons-dbutils</groupId> <artifactId>commons-dbutils</artifactId> </dependency> <dependency> <groupId>com.fireflysource</groupId> <artifactId>firefly-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> </dependencies> </project>