|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<!-- |
| 4 | + ~ Copyright (c) 2010-present Sonatype, Inc. |
| 5 | + ~ All rights reserved. This program and the accompanying materials |
| 6 | + ~ are made available under the terms of the Eclipse Public License v1.0 |
| 7 | + ~ which accompanies this distribution, and is available at |
| 8 | + ~ http://www.eclipse.org/legal/epl-v10.html |
| 9 | + ~ |
| 10 | + ~ Contributors: |
| 11 | + ~ Stuart McCulloch (Sonatype, Inc.) - initial API and implementation |
| 12 | +--> |
| 13 | + |
| 14 | +<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"> |
| 15 | + <modelVersion>4.0.0</modelVersion> |
| 16 | + |
| 17 | + <parent> |
| 18 | + <groupId>org.eclipse.sisu</groupId> |
| 19 | + <artifactId>sisu-inject</artifactId> |
| 20 | + <version>0.9.0-SNAPSHOT</version> |
| 21 | + </parent> |
| 22 | + |
| 23 | + <artifactId>coverage-aggregator</artifactId> |
| 24 | + <packaging>pom</packaging> |
| 25 | + <description>Module to aggregate code test coverage</description> |
| 26 | + |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>org.eclipse.sisu</groupId> |
| 30 | + <artifactId>org.eclipse.sisu.inject</artifactId> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>org.eclipse.sisu</groupId> |
| 34 | + <artifactId>org.eclipse.sisu.plexus</artifactId> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.eclipse.sisu</groupId> |
| 38 | + <artifactId>sisu-maven-plugin</artifactId> |
| 39 | + </dependency> |
| 40 | + </dependencies> |
| 41 | + |
| 42 | + <build> |
| 43 | + <plugins> |
| 44 | + <plugin> |
| 45 | + <groupId>org.jacoco</groupId> |
| 46 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 47 | + <executions> |
| 48 | + <execution> |
| 49 | + <id>report-aggregate</id> |
| 50 | + <phase>verify</phase> |
| 51 | + <goals> |
| 52 | + <goal>report-aggregate</goal> |
| 53 | + </goals> |
| 54 | + </execution> |
| 55 | + </executions> |
| 56 | + </plugin> |
| 57 | + </plugins> |
| 58 | + </build> |
| 59 | +</project> |
| 60 | + |
0 commit comments