1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 3 Copyright (c) 2009, 2018 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.0</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.report.test</module> 31 <module>../org.jacoco.agent.rt.test</module> 32 <module>../org.jacoco.agent.test</module> 33 <module>../org.jacoco.ant.test</module> 34 <module>../org.jacoco.cli.test</module> 35 <module>../org.jacoco.examples.test</module> 36 <module>../jacoco-maven-plugin.test</module> 37 </modules> 38 39 <properties> 40 <maven.deploy.skip>true</maven.deploy.skip> 41 <maven.javadoc.skip>true</maven.javadoc.skip> 42 <sonar.skip>true</sonar.skip> 43 </properties> 44 45 <build> 46 <sourceDirectory>src</sourceDirectory> 47 48 <plugins> 49 <plugin> 50 <groupId>org.jacoco</groupId> 51 <artifactId>jacoco-maven-plugin</artifactId> 52 <version>${project.version}</version> 53 <configuration> 54 <exclClassLoaders>sun.reflect.DelegatingClassLoader:org.jacoco.core.test.TargetLoader:org.jacoco.core.test.InstrumentingLoader</exclClassLoaders> 55 <sessionId>${project.artifactId}</sessionId> 56 <includes> 57 <include>${jacoco.includes}</include> 58 </includes> 59 <excludes> 60 <exclude>${jacoco.excludes}</exclude> 61 </excludes> 62 </configuration> 63 <executions> 64 <execution> 65 <goals> 66 <goal>prepare-agent</goal> 67 </goals> 68 </execution> 69 </executions> 70 </plugin> 71 </plugins> 72 </build> 73 </project> 74