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.examples</artifactId> 24 25 <name>JaCoCo :: Examples</name> 26 <description>JaCoCo API Usage Examples</description> 27 28 <properties> 29 <maven.deploy.skip>true</maven.deploy.skip> 30 </properties> 31 32 <dependencies> 33 <dependency> 34 <groupId>${project.groupId}</groupId> 35 <artifactId>org.jacoco.report</artifactId> 36 </dependency> 37 </dependencies> 38 39 <build> 40 <sourceDirectory>src</sourceDirectory> 41 42 <plugins> 43 <plugin> 44 <groupId>org.apache.maven.plugins</groupId> 45 <artifactId>maven-assembly-plugin</artifactId> 46 <executions> 47 <execution> 48 <phase>package</phase> 49 <goals> 50 <goal>single</goal> 51 </goals> 52 <configuration> 53 <appendAssemblyId>false</appendAssemblyId> 54 <descriptors> 55 <descriptor>assembly.xml</descriptor> 56 </descriptors> 57 </configuration> 58 </execution> 59 </executions> 60 </plugin> 61 </plugins> 62 </build> 63</project> 64