• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3   Copyright (c) 2009, 2019 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      Andres Almiray - 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.core.test.validation</artifactId>
19    <version>0.8.4</version>
20    <relativePath>../org.jacoco.core.test.validation</relativePath>
21  </parent>
22
23  <artifactId>org.jacoco.core.test.validation.groovy</artifactId>
24
25  <name>JaCoCo :: Test :: Core :: Validation Groovy</name>
26
27  <properties>
28    <gmaven.version>1.6.2</gmaven.version>
29    <groovy.version>2.5.3</groovy.version>
30  </properties>
31
32  <dependencies>
33    <dependency>
34      <groupId>${project.groupId}</groupId>
35      <artifactId>org.jacoco.core.test</artifactId>
36      <version>${project.version}</version>
37    </dependency>
38    <dependency>
39      <groupId>org.codehaus.groovy</groupId>
40      <artifactId>groovy</artifactId>
41      <version>${groovy.version}</version>
42    </dependency>
43  </dependencies>
44
45  <build>
46    <plugins>
47      <plugin>
48        <groupId>org.codehaus.gmavenplus</groupId>
49        <artifactId>gmavenplus-plugin</artifactId>
50        <version>${gmaven.version}</version>
51        <executions>
52          <execution>
53            <id>compile</id>
54            <phase>process-sources</phase>
55            <goals>
56              <goal>compile</goal>
57            </goals>
58          </execution>
59        </executions>
60        <configuration>
61          <targetBytecode>${groovy.targetBytecode}</targetBytecode>
62          <sources>
63            <source>
64              <directory>${project.build.sourceDirectory}</directory>
65              <includes>
66                <include>**/*.groovy</include>
67              </includes>
68            </source>
69          </sources>
70        </configuration>
71      </plugin>
72    </plugins>
73  </build>
74</project>
75