• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3   Copyright (c) 2009, 2017 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/xsd/maven-4.0.0.xsd">
14  <modelVersion>4.0.0</modelVersion>
15
16  <groupId>jacoco</groupId>
17  <artifactId>setup-parent</artifactId>
18  <version>1.0-SNAPSHOT</version>
19  <packaging>pom</packaging>
20
21  <dependencies>
22    <dependency>
23      <groupId>junit</groupId>
24      <artifactId>junit</artifactId>
25      <version>4.8.2</version>
26      <scope>test</scope>
27    </dependency>
28  </dependencies>
29
30  <build>
31    <pluginManagement>
32      <plugins>
33        <plugin>
34          <groupId>@project.groupId@</groupId>
35          <artifactId>jacoco-maven-plugin</artifactId>
36          <version>@project.version@</version>
37        </plugin>
38        <plugin>
39          <groupId>org.apache.maven.plugins</groupId>
40          <artifactId>maven-compiler-plugin</artifactId>
41          <version>2.3.2</version>
42          <configuration>
43            <source>@maven.compiler.source@</source>
44            <target>@maven.compiler.target@</target>
45          </configuration>
46        </plugin>
47        <plugin>
48          <groupId>org.apache.maven.plugins</groupId>
49          <artifactId>maven-surefire-plugin</artifactId>
50          <version>2.9</version>
51        </plugin>
52        <plugin>
53          <groupId>org.apache.maven.plugins</groupId>
54          <artifactId>maven-jar-plugin</artifactId>
55          <version>2.3.1</version>
56        </plugin>
57      </plugins>
58    </pluginManagement>
59  </build>
60</project>
61