jdbi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jdbi</groupId> <artifactId>jdbi</artifactId> <version>2.78</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/maven-v4_0_0.xsd"> <parent> <artifactId>basepom-oss</artifactId> <groupId>org.basepom</groupId> <version>19</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jdbi</groupId> <artifactId>jdbi</artifactId> <name>jDBI</name> <version>2.78</version> <description>jDBI is designed to provide convenient tabular data access in Java(tm). It uses the Java collections framework for query results, provides a convenient means of externalizing sql statements, and provides named parameter support for any database being used.</description> <url>http://jdbi.org/</url> <developers> <developer> <id>brianm</id> <name>Brian McCallister</name> <email>brianm@skife.org</email> </developer> <developer> <id>martint</id> <name>Martin Traverso</name> </developer> <developer> <id>hgschmie</id> <name>Henning Schmiedehausen</name> </developer> <developer> <id>arosien</id> <name>Adam Rosien</name> </developer> <developer> <id>tomdz</id> <name>Thomas Dudziak</name> </developer> <developer> <id>stevenschlansker</id> <name>Steven Schlansker</name> </developer> </developers> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/jdbi/jdbi.git</connection> <developerConnection>scm:git:git@github.com:jdbi/jdbi.git</developerConnection> <tag>jdbi-2.78</tag> <url>https://github.com/jdbi/jdbi/</url> </scm> <build> <pluginManagement> <plugins> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr3-maven-plugin</artifactId> <version>${dep.antlr.version}</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <links> <link>http://docs.oracle.com/javase/6/docs/api/</link> </links> <nodeprecated>true</nodeprecated> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <configuration> <excludeFilterFile>${project.basedir}/src/build/findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <suppressionsLocation>${project.basedir}/src/build/checkstyle-suppressions.xml</suppressionsLocation> <suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <header>${project.basedir}/src/build/LICENSE-HEADER.txt</header> <excludes> <exclude>**/*.stg</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-toolchains-plugin</artifactId> <version>1.1</version> <configuration> <toolchains> <jdk> <version>${project.build.targetJdk}</version> <vendor>sun</vendor> </jdk> </toolchains> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkCount>1</forkCount> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-toolchains-plugin</artifactId> <executions> <execution> <goals> <goal>toolchain</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr3-maven-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>antlr</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> <shadedArtifactAttached>false</shadedArtifactAttached> <artifactSet> <includes> <include>org.antlr:antlr-runtime</include> <include>com.fasterxml:classmate</include> <include>cglib:cglib</include> <include>org.ow2.asm:asm</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.antlr.runtime</pattern> <shadedPattern>org.skife.jdbi.org.antlr.runtime</shadedPattern> </relocation> <relocation> <pattern>net.sf.cglib</pattern> <shadedPattern>org.skife.jdbi.cglib</shadedPattern> </relocation> <relocation> <pattern>org.objectweb.asm</pattern> <shadedPattern>org.skife.jdbi.asm</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml.classmate</pattern> <shadedPattern>org.skife.jdbi.com.fasterxml.classmate</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>3.0.0.RELEASE</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>3.0.0.RELEASE</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>3.0.0.RELEASE</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.12</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>stringtemplate</artifactId> <version>3.2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>2.0.3</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>3.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>cglib-nodep</artifactId> <groupId>cglib</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>19.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jexl</artifactId> <version>2.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>3.0.0.RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.3.173</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.10.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.1-901-1.jdbc4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.3.2</version> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>5.1</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> </dependencies> </dependencyManagement> <properties> <dep.spring.version>3.0.0.RELEASE</dep.spring.version> <dep.antlr.version>3.4</dep.antlr.version> <basepom.maven.version>2.0.9</basepom.maven.version> <basepom.check.fail-all>true</basepom.check.fail-all> <basepom.test.timeout>120</basepom.test.timeout> <project.build.targetJdk>1.6</project.build.targetJdk> <basepom.test.fork-count>8</basepom.test.fork-count> </properties> </project>