Skip to content

Commit

Permalink
Merge pull request yasserg#178 from rzo1/jaccoco-coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
s17t committed Dec 15, 2016
1 parent 9653c47 commit b98028c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,31 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<executions>
<execution>
<id>pre-unit-test</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>post-unit-test</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<excludes>
<exclude>**/exceptions/**</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<!-- Groovy compiler stuff -->
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
Expand Down

0 comments on commit b98028c

Please sign in to comment.