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 <parent> 18 <groupId>jacoco</groupId> 19 <artifactId>setup-parent</artifactId> 20 <version>1.0-SNAPSHOT</version> 21 </parent> 22 23 <artifactId>it-site</artifactId> 24 25 <build> 26 <plugins> 27 <plugin> 28 <groupId>@project.groupId@</groupId> 29 <artifactId>jacoco-maven-plugin</artifactId> 30 <executions> 31 <execution> 32 <goals> 33 <goal>prepare-agent</goal> 34 </goals> 35 </execution> 36 </executions> 37 </plugin> 38 <plugin> 39 <groupId>org.apache.maven.plugins</groupId> 40 <artifactId>maven-site-plugin</artifactId> 41 <version>3.3</version> 42 </plugin> 43 </plugins> 44 </build> 45 46 <reporting> 47 <excludeDefaults>true</excludeDefaults> 48 <plugins> 49 <plugin> 50 <groupId>@project.groupId@</groupId> 51 <artifactId>jacoco-maven-plugin</artifactId> 52 <version>@project.version@</version> 53 </plugin> 54 </plugins> 55 </reporting> 56</project> 57