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.report</artifactId> 24 25 <name>JaCoCo :: Report</name> 26 <description>JaCoCo Report</description> 27 28 <dependencies> 29 <dependency> 30 <groupId>${project.groupId}</groupId> 31 <artifactId>org.jacoco.core</artifactId> 32 </dependency> 33 </dependencies> 34 35 <build> 36 <sourceDirectory>src</sourceDirectory> 37 38 <plugins> 39 <plugin> 40 <groupId>org.apache.felix</groupId> 41 <artifactId>maven-bundle-plugin</artifactId> 42 <executions> 43 <execution> 44 <phase>process-classes</phase> 45 <goals> 46 <goal>manifest</goal> 47 </goals> 48 </execution> 49 </executions> 50 </plugin> 51 <plugin> 52 <groupId>org.apache.maven.plugins</groupId> 53 <artifactId>maven-jar-plugin</artifactId> 54 <configuration> 55 <archive> 56 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> 57 </archive> 58 </configuration> 59 </plugin> 60 </plugins> 61 </build> 62</project> 63