mycila-jdbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.mycila</groupId> <artifactId>mycila-jdbc</artifactId> <version>2.0.ga</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>parent-pom</artifactId> <groupId>com.mycila</groupId> <version>5</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.mycila</groupId> <artifactId>mycila-jdbc</artifactId> <name>Mycila JDBC</name> <version>2.0.ga</version> <description>Little JDBC Framework</description> <url>http://code.mycila.com/</url> <inceptionYear>2010</inceptionYear> <scm> <connection>scm:svn:https://mycila.googlecode.com/svn/mycila-jdbc/tags/mycila-jdbc-2.0.ga</connection> <developerConnection>scm:svn:https://mycila.googlecode.com/svn/mycila-jdbc/tags/mycila-jdbc-2.0.ga</developerConnection> <url>http://mycila.googlecode.com/svn/mycila-jdbc/tags/mycila-jdbc-2.0.ga</url> </scm> <build> <plugins> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <header>${basedir}/src/main/etc/header.txt</header> <failIfMissing>true</failIfMissing> <strictCheck>true</strictCheck> <properties> <owner>${project.organization.name}</owner> <year>${project.inceptionYear}</year> <email>mathieu.carbou@gmail.com</email> </properties> <excludes> <exclude>LICENSE.txt</exclude> <exclude>src/test/resources/**</exclude> <exclude>dependency-reduced-pom.xml</exclude> <exclude>tmp/**</exclude> <exclude>src/test/TODO.txt</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Bundle-ManifestVersion>2</Bundle-ManifestVersion> <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Bundle-Name>${project.name}</Bundle-Name> <Bundle-Description>${project.description}</Bundle-Description> <Bundle-Version>${project.version}</Bundle-Version> <Bundle-Vendor>${project.organization.name}</Bundle-Vendor> <Bundle-DocURL>${project.url}</Bundle-DocURL> <Bundle-Copyright>Copyright (C) ${project.inceptionYear} ${project.organization.name}</Bundle-Copyright> <Private-Package>com.mycila.jdbc.internal</Private-Package> <Export-Package>!com.mycila.jdbc.internal*, com.mycila.jdbc*;version="${project.version}";-noimport:=true</Export-Package> <Import-Package>!org.objenesis*, org.aopalliance*;resolution:=optional, javax.inject*;resolution:=optional, javax.servlet*;resolution:=optional, *</Import-Package> <_versionpolicy>[${version;===;${@}},${version;+;${@}})</_versionpolicy> <_removeheaders>Built-By,Tool,Created-By, Include-Resource,Private-Package, Ignore-Package,Bnd-LastModified</_removeheaders> </instructions> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <useDefaultManifestFile>true</useDefaultManifestFile> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>standard</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>false</shadedArtifactAttached> <createSourcesJar>true</createSourcesJar> <artifactSet> <includes> <include>org.objenesis:objenesis</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.objenesis</pattern> <shadedPattern>com.mycila.jdbc.internal.objenesis</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> <version>1.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>3.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>