Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <dependency>
  2. <!-- for code coverage -->
  3. <groupId>org.jacoco</groupId>
  4. <artifactId>org.jacoco.core</artifactId>
  5. <version>${version.jacoco}</version>
  6. <scope>test</scope>
  7. </dependency>
  8.  
  9. i plugins
  10.  
  11. <plugin>
  12. <groupId>org.jacoco</groupId>
  13. <artifactId>jacoco-maven-plugin</artifactId>
  14. <version>${version.jacoco}</version>
  15. <executions>
  16. <execution>
  17. <id>default-prepare-agent</id>
  18. <goals>
  19. <goal>prepare-agent</goal>
  20. </goals>
  21. </execution>
  22. <execution>
  23. <id>default-report</id>
  24. <phase>prepare-package</phase>
  25. <goals>
  26. <goal>report</goal>
  27. </goals>
  28. </execution>
  29. <execution>
  30. <id>default-prepare-agent-integration</id>
  31. <phase>package</phase>
  32. <goals>
  33. <goal>prepare-agent-integration</goal>
  34. </goals>
  35. </execution>
  36. <execution>
  37. <id>default-report-integration</id>
  38. <goals>
  39. <goal>report-integration</goal>
  40. </goals>
  41. </execution>
  42. </executions>
  43. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement