blob: 15758fe08731341c2ee17d9f7d8f39f7514042e5 [file] [log] [blame]
Evgeny Mandrikov1fea1692011-01-10 14:35:11 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Marc R. Hoffmannd05ad7d2011-01-12 23:17:31 +00003 Copyright (c) 2009, 2011 Mountainminds GmbH & Co. KG and Contributors
Evgeny Mandrikov1fea1692011-01-10 14:35:11 +00004 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
13 <modelVersion>4.0.0</modelVersion>
14
15 <parent>
16 <groupId>org.jacoco</groupId>
17 <artifactId>org.jacoco.build</artifactId>
Marc R. Hoffmannf795a442011-03-21 22:31:19 +000018 <version>0.5.1-SNAPSHOT</version>
Evgeny Mandrikov1fea1692011-01-10 14:35:11 +000019 <relativePath>../org.jacoco.build</relativePath>
20 </parent>
21
22 <artifactId>org.jacoco.core.test</artifactId>
23 <packaging>eclipse-test-plugin</packaging>
24
25 <name>JaCoCo :: Test :: Core</name>
26
27 <properties>
28 <maven.deploy.skip>true</maven.deploy.skip>
29 </properties>
30
31 <!-- Note that Tycho doesn't use those dependencies -->
32 <dependencies>
33 <dependency>
34 <groupId>${project.groupId}</groupId>
35 <artifactId>org.jacoco.core</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>junit</groupId>
39 <artifactId>junit</artifactId>
40 </dependency>
41 </dependencies>
42
43 <build>
44 <testSourceDirectory>src</testSourceDirectory>
45 </build>
46</project>