1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3   Copyright (c) 2009, 2019 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      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/xsd/maven-4.0.0.xsd">
14  <modelVersion>4.0.0</modelVersion>
15
16  <parent>
17    <groupId>jacoco</groupId>
18    <artifactId>it-report-aggregate</artifactId>
19    <version>1.0-SNAPSHOT</version>
20  </parent>
21
22  <artifactId>report</artifactId>
23  <name>Aggregate Report</name>
24
25  <dependencies>
26    <dependency>
27      <groupId>jacoco</groupId>
28      <artifactId>child1</artifactId>
29      <version>${project.version}</version>
30      <scope>compile</scope>
31    </dependency>
32    <dependency>
33      <groupId>jacoco</groupId>
34      <artifactId>child1-test</artifactId>
35      <version>${project.version}</version>
36      <scope>test</scope>
37    </dependency>
38    <dependency>
39      <groupId>jacoco</groupId>
40      <artifactId>child2</artifactId>
41      <version>[2-SNAPSHOT,)</version>
42      <scope>runtime</scope>
43    </dependency>
44  </dependencies>
45
46  <build>
47    <plugins>
48      <plugin>
49        <groupId>@project.groupId@</groupId>
50        <artifactId>jacoco-maven-plugin</artifactId>
51        <executions>
52          <execution>
53            <id>report-aggregate</id>
54            <phase>verify</phase>
55            <goals>
56              <goal>report-aggregate</goal>
57            </goals>
58          </execution>
59        </executions>
60      </plugin>
61    </plugins>
62  </build>
63
64</project>
65