blob: 080ae97134daa65ad0a7c00f4c7ff25724756b4e [file] [log] [blame]
Marc R. Hoffmannc181f602016-04-19 13:22:01 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Evgeny Mandrikov34cd8802017-01-03 20:58:31 +01003 Copyright (c) 2009, 2017 Mountainminds GmbH & Co. KG and Contributors
Marc R. Hoffmannc181f602016-04-19 13:22:01 +02004 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 Marc R. Hoffmann, Jan Wloka - initial API and implementation
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/maven-v4_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-report-aggregate</artifactId>
23 <packaging>pom</packaging>
24
25 <modules>
26 <module>child1</module>
27 <module>child1-test</module>
28 <module>child2</module>
29 <module>report</module>
30 </modules>
31
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>@project.groupId@</groupId>
36 <artifactId>jacoco-maven-plugin</artifactId>
37 <executions>
38 <execution>
39 <id>prepare-agent</id>
40 <goals>
41 <goal>prepare-agent</goal>
42 </goals>
43 </execution>
44 </executions>
45 </plugin>
46 </plugins>
47 </build>
48</project>