mobilefish

Untitled

Jul 2nd, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.jacoco</groupId>
  3. <artifactId>jacoco-maven-plugin</artifactId>
  4. <version>0.7.9</version>
  5. <executions>
  6. <execution>
  7. <id>prepare-agent</id>
  8. <goals>
  9. <goal>prepare-agent</goal>
  10. </goals>
  11. </execution>
  12. <execution>
  13. <id>report</id>
  14. <phase>prepare-package</phase>
  15. <goals>
  16. <goal>report</goal>
  17. </goals>
  18. </execution>
  19. <execution>
  20. <id>post-unit-test</id>
  21. <phase>test</phase>
  22. <goals>
  23. <goal>report</goal>
  24. </goals>
  25. <configuration>
  26. <!-- Sets the path to the file which contains the execution data. -->
  27.  
  28. <dataFile>target/jacoco.exec</dataFile>
  29. <!-- Sets the output directory for the code coverage report. -->
  30. <outputDirectory>target/jacoco-ut</outputDirectory>
  31. </configuration>
  32. </execution>
  33. </executions>
  34. <configuration>
  35. <systemPropertyVariables>
  36. <jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile>
  37. </systemPropertyVariables>
  38. </configuration>
  39. </plugin>
Add Comment
Please, Sign In to add comment