Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.jacoco</groupId>
  3. <artifactId>jacoco-maven-plugin</artifactId>
  4. <version>0.6.3.201306030806</version>
  5. <executions>
  6. <execution>
  7. <id>jacoco-initialize</id>
  8. <phase>initialize</phase>
  9. <goals>
  10. <goal>prepare-agent</goal>
  11. </goals>
  12. </execution>
  13. <execution>
  14. <id>jacoco-site</id>
  15. <phase>package</phase>
  16. <goals>
  17. <goal>report</goal>
  18. </goals>
  19. </execution>
  20. </executions>
  21. </plugin>
  22.  
  23. <plugin>
  24. <groupId>org.jacoco</groupId>
  25. <artifactId>jacoco-maven-plugin</artifactId>
  26. <version>0.8.1</version>
  27. <executions>
  28. <execution>
  29. <goals>
  30. <goal>prepare-agent</goal>
  31. </goals>
  32. </execution>
  33. <execution>
  34. <id>report</id>
  35. <phase>prepare-package</phase>
  36. <goals>
  37. <goal>report</goal>
  38. </goals>
  39. </execution>
  40. </executions>
  41. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement