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