Skip to content

Commit

Permalink
add jacoco code coverage reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Meihm committed Apr 12, 2019
1 parent b022578 commit 32f9b3c
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
<configuration>
<argLine>-Xmx2048m</argLine>
<argLine>@{argLine} -Xmx2048m</argLine>
<systemProperties>
<property>
<name>java.util.logging.config.file</name>
Expand All @@ -64,6 +64,25 @@
</java>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.3</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 32f9b3c

Please sign in to comment.