• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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      Evgeny Mandrikov - 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
13  <modelVersion>4.0.0</modelVersion>
14
15  <parent>
16    <groupId>org.jacoco</groupId>
17    <artifactId>org.jacoco.build</artifactId>
18    <version>0.8.4</version>
19    <relativePath>../org.jacoco.build</relativePath>
20  </parent>
21
22  <artifactId>org.jacoco.core</artifactId>
23
24  <name>JaCoCo :: Core</name>
25  <description>JaCoCo Core</description>
26
27  <dependencies>
28    <dependency>
29      <groupId>org.ow2.asm</groupId>
30      <artifactId>asm</artifactId>
31    </dependency>
32    <dependency>
33      <groupId>org.ow2.asm</groupId>
34      <artifactId>asm-commons</artifactId>
35    </dependency>
36    <dependency>
37      <groupId>org.ow2.asm</groupId>
38      <artifactId>asm-tree</artifactId>
39    </dependency>
40  </dependencies>
41
42  <build>
43    <sourceDirectory>src</sourceDirectory>
44
45    <plugins>
46      <plugin>
47        <groupId>org.apache.felix</groupId>
48        <artifactId>maven-bundle-plugin</artifactId>
49        <executions>
50          <execution>
51            <phase>process-classes</phase>
52            <goals>
53              <goal>manifest</goal>
54            </goals>
55          </execution>
56        </executions>
57      </plugin>
58      <plugin>
59        <groupId>org.apache.maven.plugins</groupId>
60        <artifactId>maven-jar-plugin</artifactId>
61        <configuration>
62          <archive>
63            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
64          </archive>
65        </configuration>
66      </plugin>
67    </plugins>
68  </build>
69</project>
70