<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>
	<parent>
		<groupId>dk.nsp.msbutil</groupId>
		<artifactId>msbutil</artifactId>
		<version>1.0.0-SNAPSHOT</version>
	</parent>
	<artifactId>test-report</artifactId>

	<dependencies>
		<dependency>
			<groupId>dk.nsp.msbutil</groupId>
			<artifactId>brs-client</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>dk.nsp.msbutil</groupId>
			<artifactId>consent-client</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>dk.nsp.msbutil</groupId>
			<artifactId>minlog-reg-client</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.19.1</version>
				<configuration>
					<!-- Jacoco prepare-agent builds some command-line params without -->
					<!-- which jacoco will not instrument. Hence it is important to add -->
					<!-- those command-line params here (${argLine} holds those params) -->
					<argLine>${argLine} -Xms256m -Xmx2048m</argLine>
					<forkCount>1</forkCount>
					<runOrder>random</runOrder>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.jacoco</groupId>
				<artifactId>jacoco-maven-plugin</artifactId>
				<configuration>
					<excludes>
						<exclude>dk/nsi/fmki20110601/brs/*</exclude>
					</excludes>
				</configuration>
				<executions>
					<execution>
						<id>report-aggregate</id>
						<phase>verify</phase>
						<goals>
							<goal>report-aggregate</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>

	</build>
</project>
