<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">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>io.trane</groupId>
		<artifactId>ndbc</artifactId>
		<version>0.1.3</version>
	</parent>
	<artifactId>ndbc-postgres-embedded</artifactId>
	<packaging>jar</packaging>

	<name>ndbc-postgres-embedded</name>

	<dependencies>
		<dependency>
			<groupId>io.trane</groupId>
			<artifactId>ndbc-core</artifactId>
			<version>0.1.3</version>
		</dependency>
		<dependency>
			<groupId>io.trane</groupId>
			<artifactId>ndbc-postgres</artifactId>
			<version>0.1.3</version>
		</dependency>
		<dependency>
			<groupId>ch.qos.logback</groupId>
			<artifactId>logback-classic</artifactId>
			<version>1.2.3</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>ru.yandex.qatools.embed</groupId>
			<artifactId>postgresql-embedded</artifactId>
			<version>2.9</version>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.pitest</groupId>
				<artifactId>pitest-maven</artifactId>
				<version>1.1.11</version>
				<configuration>
					<targetClasses>
						<param>io.trane*</param>
					</targetClasses>
					<targetTests>
						<param>io.trane*</param>
					</targetTests>
					<threads>8</threads>
					<exportLineCoverage>true</exportLineCoverage>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>