xref: /aosp_15_r20/external/jacoco/org.jacoco.core.test.validation.groovy/pom.xml (revision 7e63c1270baf9bfa84f5b6aecf17bd0c1a75af94)
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      Andres Almiray - 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"
14         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15  <modelVersion>4.0.0</modelVersion>
16
17  <parent>
18    <groupId>org.jacoco</groupId>
19    <artifactId>org.jacoco.core.test.validation</artifactId>
20    <version>0.8.7</version>
21    <relativePath>../org.jacoco.core.test.validation</relativePath>
22  </parent>
23
24  <artifactId>org.jacoco.core.test.validation.groovy</artifactId>
25
26  <name>JaCoCo :: Test :: Core :: Validation Groovy</name>
27
28  <properties>
29    <gmaven.version>1.11.0</gmaven.version>
30    <groovy.version>3.0.7</groovy.version>
31  </properties>
32
33  <dependencies>
34    <dependency>
35      <groupId>${project.groupId}</groupId>
36      <artifactId>org.jacoco.core.test</artifactId>
37      <version>${project.version}</version>
38    </dependency>
39    <dependency>
40      <groupId>org.codehaus.groovy</groupId>
41      <artifactId>groovy</artifactId>
42      <version>${groovy.version}</version>
43    </dependency>
44  </dependencies>
45
46  <build>
47    <plugins>
48      <plugin>
49        <groupId>org.codehaus.gmavenplus</groupId>
50        <artifactId>gmavenplus-plugin</artifactId>
51        <version>${gmaven.version}</version>
52        <executions>
53          <execution>
54            <id>compile</id>
55            <phase>process-sources</phase>
56            <goals>
57              <goal>compile</goal>
58            </goals>
59          </execution>
60        </executions>
61        <configuration>
62          <targetBytecode>${groovy.targetBytecode}</targetBytecode>
63          <sources>
64            <source>
65              <directory>${project.build.sourceDirectory}</directory>
66              <includes>
67                <include>**/*.groovy</include>
68              </includes>
69            </source>
70          </sources>
71        </configuration>
72      </plugin>
73    </plugins>
74  </build>
75</project>
76