1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors 4 All rights reserved. This program and the accompanying materials 5 are made available under the terms of the Eclipse Public License v1.0 6 which accompanies this distribution, and is available at 7 http://www.eclipse.org/legal/epl-v10.html 8 9 Contributors: 10 Mads Mohr Christensen - implementation of MergeMojo 11--> 12<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 13 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 14 <modelVersion>4.0.0</modelVersion> 15 16 <parent> 17 <groupId>jacoco</groupId> 18 <artifactId>setup-parent</artifactId> 19 <version>1.0-SNAPSHOT</version> 20 </parent> 21 22 <artifactId>it-merge-passes</artifactId> 23 <packaging>pom</packaging> 24 25 <modules> 26 <module>it-merge-passes-project1</module> 27 <module>it-merge-passes-project2</module> 28 <module>it-merge-passes-merge</module> 29 </modules> 30 31 <build> 32 <plugins> 33 <plugin> 34 <groupId>@project.groupId@</groupId> 35 <artifactId>jacoco-maven-plugin</artifactId> 36 <executions> 37 <execution> 38 <id>prepare-agent</id> 39 <goals> 40 <goal>prepare-agent</goal> 41 </goals> 42 <configuration> 43 <destFile>${project.parent.build.directory}/${project.artifactId}.exec</destFile> 44 </configuration> 45 </execution> 46 </executions> 47 </plugin> 48 <plugin> 49 <groupId>org.apache.maven.plugins</groupId> 50 <artifactId>maven-surefire-plugin</artifactId> 51 <configuration> 52 <argLine>${argLine}</argLine> 53 </configuration> 54 </plugin> 55 </plugins> 56 </build> 57 58</project> 59