xref: /aosp_15_r20/external/jacoco/org.jacoco.core/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" 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>org.jacoco</groupId>
18    <artifactId>org.jacoco.build</artifactId>
19    <version>0.8.7</version>
20    <relativePath>../org.jacoco.build</relativePath>
21  </parent>
22
23  <artifactId>org.jacoco.core</artifactId>
24
25  <name>JaCoCo :: Core</name>
26  <description>JaCoCo Core</description>
27
28  <dependencies>
29    <dependency>
30      <groupId>org.ow2.asm</groupId>
31      <artifactId>asm</artifactId>
32    </dependency>
33    <dependency>
34      <groupId>org.ow2.asm</groupId>
35      <artifactId>asm-commons</artifactId>
36    </dependency>
37    <dependency>
38      <groupId>org.ow2.asm</groupId>
39      <artifactId>asm-tree</artifactId>
40    </dependency>
41  </dependencies>
42
43  <build>
44    <sourceDirectory>src</sourceDirectory>
45
46    <plugins>
47      <plugin>
48        <groupId>org.apache.felix</groupId>
49        <artifactId>maven-bundle-plugin</artifactId>
50        <executions>
51          <execution>
52            <phase>process-classes</phase>
53            <goals>
54              <goal>manifest</goal>
55            </goals>
56          </execution>
57        </executions>
58      </plugin>
59      <plugin>
60        <groupId>org.apache.maven.plugins</groupId>
61        <artifactId>maven-jar-plugin</artifactId>
62        <configuration>
63          <archive>
64            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
65          </archive>
66        </configuration>
67      </plugin>
68    </plugins>
69  </build>
70</project>
71