Java Code Coverage
Getting Started with Code Coverage by Jacoco
	<plugin>
	  <groupId>org.jacoco</groupId>
	  <artifactId>jacoco-maven-plugin</artifactId>
	  <version>0.7.5.201505241946</version>
	  <executions>
	  <execution>
	      <goals>
	        <goal>prepare-agent</goal>
	      </goals>
	    </execution>
	    <execution>
	      <id>report</id>
	      <phase>prepare-package</phase>
	      <goals>
	        <goal>report</goal>
	      </goals>
	    </execution>
	  </executions>
	</plugin>
Created 15/09-2015 by Michael Bornholdt Nielsen