Include coverage statistics for the main module too (#2761)
* Include coverage statistics for the main module too * Fix execution data path for main module
This commit is contained in:
parent
9c7d4c2774
commit
4966e448d0
@ -1,6 +1,6 @@
|
||||
# OpenRefine
|
||||
|
||||
[](https://gitter.im/OpenRefine/OpenRefine?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://travis-ci.org/OpenRefine/OpenRefine) [](https://coveralls.io/github/OpenRefine/OpenRefine?branch=coveralls) [](https://hosted.weblate.org/engage/openrefine/?utm_source=widget) [](https://lgtm.com/projects/g/OpenRefine/OpenRefine/alerts/)
|
||||
[](https://gitter.im/OpenRefine/OpenRefine?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://travis-ci.org/OpenRefine/OpenRefine) [](https://coveralls.io/github/OpenRefine/OpenRefine) [](https://hosted.weblate.org/engage/openrefine/?utm_source=widget) [](https://lgtm.com/projects/g/OpenRefine/OpenRefine/alerts/)
|
||||
|
||||
OpenRefine is a Java-based power tool that allows you to load data, understand it,
|
||||
clean it up, reconcile it, and augment it with data coming from
|
||||
|
9
pom.xml
9
pom.xml
@ -144,7 +144,7 @@
|
||||
</goals>
|
||||
<phase>process-test-resources</phase>
|
||||
<configuration>
|
||||
<destFile>${project.build.directory}/report/jacoco.exec</destFile>
|
||||
<destFile>${project.build.directory}/report/${project.name}.exec</destFile>
|
||||
<propertyName>surefireArgs</propertyName>
|
||||
</configuration>
|
||||
</execution>
|
||||
@ -154,7 +154,7 @@
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<dataFile>${project.build.directory}/jacoco.exec</dataFile>
|
||||
<dataFile>${project.build.directory}/report/${project.name}.exec</dataFile>
|
||||
<outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
@ -168,10 +168,9 @@
|
||||
<destFile>${project.build.directory}/report/jacoco-merged.exec</destFile>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<directory>${project.build.directory}/report</directory>
|
||||
<directory>main/target/report</directory>
|
||||
<includes>
|
||||
<include>jacoco.exec</include>
|
||||
<include>jacoco-merged.exec</include>
|
||||
<include>*.exec</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
|
Loading…
Reference in New Issue
Block a user