xref: /aosp_15_r20/external/jacoco/jacoco-maven-plugin.test/it/it-multi-module/pom.xml (revision 7e63c1270baf9bfa84f5b6aecf17bd0c1a75af94)
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3   Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors
4   This program and the accompanying materials are made available under
5   the terms of the Eclipse Public License 2.0 which is available at
6   http://www.eclipse.org/legal/epl-2.0
7
8   SPDX-License-Identifier: EPL-2.0
9
10   Contributors:
11      Evgeny Mandrikov - initial API and implementation
12-->
13<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15  <modelVersion>4.0.0</modelVersion>
16
17  <parent>
18    <groupId>jacoco</groupId>
19    <artifactId>setup-parent</artifactId>
20    <version>1.0-SNAPSHOT</version>
21  </parent>
22
23  <artifactId>it-multi-module</artifactId>
24  <packaging>pom</packaging>
25
26  <modules>
27    <module>child</module>
28    <module>child-jar-without-sources</module>
29    <module>skip-child</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          <execution>
45            <id>report</id>
46            <goals>
47              <goal>report</goal>
48            </goals>
49          </execution>
50        </executions>
51      </plugin>
52      <plugin>
53        <groupId>org.apache.maven.plugins</groupId>
54        <artifactId>maven-surefire-plugin</artifactId>
55        <configuration>
56          <argLine>-ea ${argLine}</argLine>
57        </configuration>
58      </plugin>
59    </plugins>
60  </build>
61</project>
62