<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>nz.co.gregs</groupId>
<artifactId>dbvolution</artifactId>
<version>0.9.7-SNAPSHOT</version>
<packaging>jar</packaging>
<name>DBvolution</name>
<description>Advanced Library to Remove Object Relational Impedance</description>
<url>https://sourceforge.net/projects/dbvolution/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:https://svn.code.sf.net/p/dbvolution/code-0/trunk</connection>
<developerConnection>scm:svn:https://svn.code.sf.net/p/dbvolution/code-0/trunk</developerConnection>
<url>https://svn.code.sf.net/p/dbvolution/code-0/trunk</url>
</scm>
<developers>
<developer>
<name>Gregory Graham</name>
<email>gregory@gregs.co.nz</email>
<roles>
<role>architect</role>
<role>developer</role>
<role>software engineer</role>
</roles>
<timezone>+12</timezone>
<organizationUrl>http://www.gregs.co.nz</organizationUrl>
</developer>
</developers>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<libDirectory>${basedir}/lib</libDirectory>
</properties>
<profiles>
<profile>
<id>mutationTest</id>
<build>
<plugins>
<plugin>
<!-- This looks like a good idea.
Currently not working due to a bug supporting Maven2,
supposedly fixed in 0.33, due to be released soon.
Error is: "UnsupportedOperationException: Tried to retrieve value but had None".
Issue: https://github.com/hcoles/pitest/issues/92 -->
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>0.32</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>mutationCoverage</goal>
</goals>
</execution>
</executions>
<configuration>
<targetClasses>
<param>nz.co.gregs.dbvolution*</param>
</targetClasses>
<targetTests>
<param>nz.co.gregs.dbvolution*</param>
</targetTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArgs>
<arg>-Xlint</arg>
</compilerArgs>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
</configuration>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14.1</version>
<configuration>
<includes>
<include>**/*.java</include>
</includes>
<threadCount>1</threadCount>
<forkCount>1</forkCount>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.24</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.174</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.tedhi</groupId>
<artifactId>tedhi</artifactId>
<version>0.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-mxj</artifactId>
<version>5.0.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901.jdbc4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.9-RC1</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
<classifier>api</classifier>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
<classifier>adapters</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>nz.co.gregs</groupId>
<artifactId>dbvolution-eclipse</artifactId>
<version>3.8.3.3</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
<!-- Sonatype JIRA ticket: https://issues.sonatype.org/browse/OSSRH-6397 -->
</repository>
</distributionManagement>
<repositories>
<repository>
<id>SourceForge</id>
<url>http://csvjdbc.sourceforge.net/maven2</url>
</repository>
</repositories>
</project>