aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorritchie <ritchie@gmx.at>2015-05-14 17:13:40 +0200
committerritchie <ritchie@gmx.at>2015-05-14 17:13:40 +0200
commita029fe88d1e4913ba665bf75bcbe44d2f81fb952 (patch)
treeb01a65169c693e76decc852989005a5d89380fd1 /pom.xml
parentb1ab87229132a8291eff259cae48d1f6b0572c92 (diff)
downloadnanohttpd-a029fe88d1e4913ba665bf75bcbe44d2f81fb952.tar.gz
try agrigaring jacoco results
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml54
1 files changed, 41 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index 007d570..e2fb386 100644
--- a/pom.xml
+++ b/pom.xml
@@ -233,19 +233,6 @@
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.eluder.coveralls</groupId>
- <artifactId>coveralls-maven-plugin</artifactId>
- <version>3.1.0</version>
- <configuration>
- <jacocoReports>
- <jacocoReport>core/target/site/jacoco/jacoco.xml</jacocoReport>
- <jacocoReport>module1/target/site/markdown-plugin/jacoco.xml</jacocoReport>
- <jacocoReport>module1/target/site/webserver/jacoco.xml</jacocoReport>
- <jacocoReport>module1/target/site/websocket/jacoco.xml</jacocoReport>
- </jacocoReports>
- </configuration>
- </plugin>
</plugins>
</build>
<reporting>
@@ -419,5 +406,46 @@
</plugins>
</reporting>
</profile>
+ <profile>
+ <id>parent-build</id>
+ <activation>
+ <file>
+ <exists>core/pom.xml</exists>
+ </file>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <version>0.7.4.201502262128</version>
+ <executions>
+ <execution>
+ <id>merge-report</id>
+ <phase>package</phase>
+ <goals>
+ <goal>merge</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <fileSets>
+ <fileSet>
+ <directory>${project.basedir}/..</directory>
+ <includes>
+ <include>*.exec</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eluder.coveralls</groupId>
+ <artifactId>coveralls-maven-plugin</artifactId>
+ <version>3.1.0</version>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>