xref: /aosp_15_r20/external/jacoco/jacoco-maven-plugin.test/it/setup-parent/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  <groupId>jacoco</groupId>
18  <artifactId>setup-parent</artifactId>
19  <version>1.0-SNAPSHOT</version>
20  <packaging>pom</packaging>
21
22  <dependencies>
23    <dependency>
24      <groupId>junit</groupId>
25      <artifactId>junit</artifactId>
26      <version>@junit.version@</version>
27      <scope>test</scope>
28    </dependency>
29  </dependencies>
30
31  <build>
32    <pluginManagement>
33      <plugins>
34        <plugin>
35          <groupId>@project.groupId@</groupId>
36          <artifactId>jacoco-maven-plugin</artifactId>
37          <version>@project.version@</version>
38        </plugin>
39        <plugin>
40          <groupId>org.apache.maven.plugins</groupId>
41          <artifactId>maven-compiler-plugin</artifactId>
42          <version>2.3.2</version>
43          <configuration>
44            <source>@maven.compiler.source@</source>
45            <target>@maven.compiler.target@</target>
46          </configuration>
47        </plugin>
48        <plugin>
49          <groupId>org.apache.maven.plugins</groupId>
50          <artifactId>maven-surefire-plugin</artifactId>
51          <version>2.9</version>
52        </plugin>
53        <plugin>
54          <groupId>org.apache.maven.plugins</groupId>
55          <artifactId>maven-jar-plugin</artifactId>
56          <version>2.3.1</version>
57        </plugin>
58      </plugins>
59    </pluginManagement>
60  </build>
61</project>
62