blob: 7295ddb31e565b9cc13dc63fa52cfb0716f5919e [file]
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.phoenixadapters</groupId>
<artifactId>phoenix-adapters</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>coverage-report</artifactId>
<packaging>pom</packaging>
<name>Phoenix Adapters - Coverage Report</name>
<description>Module dedicated to generating aggregated code coverage reports</description>
<dependencies>
<!-- Dependencies on modules we want to include in coverage -->
<dependency>
<groupId>org.apache.phoenixadapters</groupId>
<artifactId>phoenix-ddb-utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.phoenixadapters</groupId>
<artifactId>phoenix-ddb-rest</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>