blob: 486efb5b5905b66a595d5fddae88b2490e824b4d [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>
Evgeny Mandrikov71813992011-07-06 22:24:23 +000018 <version>0.5.3.201107060350</version>
Evgeny Mandrikov1fea1692011-01-10 14:35:11 +000019 <relativePath>../org.jacoco.build</relativePath>
20 </parent>
21
22 <artifactId>org.jacoco.report</artifactId>
23 <packaging>eclipse-plugin</packaging>
24
25 <name>JaCoCo :: Report</name>
26 <description>JaCoCo Reporting</description>
27
28 <!-- Note that Tycho doesn't use those dependencies, but we need to declare them for consumers -->
29 <dependencies>
30 <dependency>
31 <groupId>${project.groupId}</groupId>
32 <artifactId>org.jacoco.core</artifactId>
33 </dependency>
34 </dependencies>
Evgeny Mandrikova6637c82011-04-12 00:30:59 +000035
36 <build>
37 <sourceDirectory>src</sourceDirectory>
38 </build>
Evgeny Mandrikov1fea1692011-01-10 14:35:11 +000039</project>