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" 13 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.4</version> 20 <relativePath>../org.jacoco.build</relativePath> 21 </parent> 22 23 <artifactId>org.jacoco.tests</artifactId> 24 <packaging>pom</packaging> 25 26 <name>JaCoCo :: Tests</name> 27 28 <modules> 29 <module>../org.jacoco.core.test</module> 30 <module>../org.jacoco.core.test.validation</module> 31 <module>../org.jacoco.report.test</module> 32 <module>../org.jacoco.agent.rt.test</module> 33 <module>../org.jacoco.agent.test</module> 34 <module>../org.jacoco.ant.test</module> 35 <module>../org.jacoco.cli.test</module> 36 <module>../org.jacoco.examples.test</module> 37 <module>../jacoco-maven-plugin.test</module> 38 </modules> 39 40 <properties> 41 <maven.deploy.skip>true</maven.deploy.skip> 42 <maven.javadoc.skip>true</maven.javadoc.skip> 43 <sonar.skip>true</sonar.skip> 44 </properties> 45 46 <build> 47 <sourceDirectory>src</sourceDirectory> 48 49 <plugins> 50 <plugin> 51 <groupId>org.jacoco</groupId> 52 <artifactId>jacoco-maven-plugin</artifactId> 53 <version>${project.version}</version> 54 <configuration> 55 <exclClassLoaders>sun.reflect.DelegatingClassLoader:org.jacoco.core.test.TargetLoader:org.jacoco.core.test.InstrumentingLoader</exclClassLoaders> 56 <sessionId>${project.artifactId}</sessionId> 57 <includes> 58 <include>${jacoco.includes}</include> 59 </includes> 60 <excludes> 61 <exclude>${jacoco.excludes}</exclude> 62 </excludes> 63 </configuration> 64 <executions> 65 <execution> 66 <goals> 67 <goal>prepare-agent</goal> 68 </goals> 69 </execution> 70 </executions> 71 </plugin> 72 </plugins> 73 </build> 74</project> 75