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.tests</artifactId> 19 <version>0.8.7</version> 20 <relativePath>../org.jacoco.tests</relativePath> 21 </parent> 22 23 <artifactId>org.jacoco.ant.test</artifactId> 24 25 <name>JaCoCo :: Test :: Ant</name> 26 27 <properties> 28 <jacoco.includes>org.jacoco.ant.*</jacoco.includes> 29 </properties> 30 31 <dependencies> 32 <dependency> 33 <groupId>${project.groupId}</groupId> 34 <artifactId>org.jacoco.ant</artifactId> 35 </dependency> 36 <dependency> 37 <groupId>junit</groupId> 38 <artifactId>junit</artifactId> 39 </dependency> 40 <dependency> 41 <groupId>org.apache.ant</groupId> 42 <artifactId>ant-antunit</artifactId> 43 </dependency> 44 <dependency> 45 <groupId>org.apache.ant</groupId> 46 <artifactId>ant-launcher</artifactId> 47 </dependency> 48 <dependency> 49 <groupId>org.apache.ant</groupId> 50 <artifactId>ant-junit</artifactId> 51 </dependency> 52 <dependency> 53 <groupId>org.apache.ant</groupId> 54 <artifactId>ant-junit4</artifactId> 55 </dependency> 56 </dependencies> 57 58 <build> 59 <plugins> 60 <plugin> 61 <groupId>org.apache.maven.plugins</groupId> 62 <artifactId>maven-surefire-plugin</artifactId> 63 <configuration> 64 <basedir>${project.build.outputDirectory}/org/jacoco/ant</basedir> 65 </configuration> 66 </plugin> 67 </plugins> 68 </build> 69</project> 70