<?xml version="1.0"?>
<project>
	<parent>
		<artifactId>utilitiesParent</artifactId>
		<groupId>ata.utilities</groupId>
		<version>1.0.0-SNAPSHOT</version>
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<groupId>org.codehaus.mojo</groupId>
	<artifactId>executionTest</artifactId>
	<name>Unit test</name>
	<version>1.0-SNAPSHOT</version>
	<url>http://maven.apache.org</url>
	<description>Coverage Test</description>
	<developers>
		<developer>
			<name>Todd Nine</name>
			<email>todd.nine@gmail.com</email>
		</developer>
	</developers>
	<build>
		<plugins>

			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<configuration>
					<check branchrate="100" linerate="100"
						haltonerror="true" totalbranchrate="100" totallinerate="100">
					</check>
				</configuration>
				<executions>
					<execution>
						<goals>
							<goal>clean</goal>
							<goal>check</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>

	</dependencies>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</reporting>

</project>
