Skip to content
Snippets Groups Projects
Commit 6f3aa114 authored by Colin DAMON's avatar Colin DAMON
Browse files

Merge test coverages

parent 798eb242
No related branches found
No related tags found
1 merge request!22Resolve "Borestop"
......@@ -546,6 +546,36 @@
<outputDirectory>${jacoco.itReportFolder}</outputDirectory>
</configuration>
</execution>
<execution>
<id>merge</id>
<phase>verify</phase>
<goals>
<goal>merge</goal>
</goals>
<configuration>
<fileSets>
<fileSet
implementation="org.apache.maven.shared.model.fileset.FileSet">
<directory>${project.basedir}</directory>
<includes>
<include>**/*.exec</include>
</includes>
</fileSet>
</fileSets>
<destFile>${project.build.directory}/coverage-reports/aggregate.exec</destFile>
</configuration>
</execution>
<execution>
<id>post-merge-report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<dataFile>${project.build.directory}/coverage-reports/aggregate.exec</dataFile>
<outputDirectory>${project.build.directory}/jacoco-aggregate</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
......@@ -796,8 +826,6 @@
<configuration>
<mainClass>${start-class}</mainClass>
<fork>true</fork>
<!-- Enable the line below to have remote debugging of your application
on port 5005 <jvmArguments>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005</jvmArguments> -->
</configuration>
</plugin>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment