Guest User

Untitled

a guest
Jun 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.codehaus.mojo</groupId>
  3. <artifactId>cobertura-maven-plugin</artifactId>
  4. <version>2.3</version>
  5. <configuration>
  6. <check>
  7. <!-- Per-class thresholds -->
  8. <lineRate>80</lineRate>
  9. <branchRate>80</branchRate>
  10. <!-- Project-wide thresholds -->
  11. <totalLineRate>90</totalLineRate>
  12. <totalBranchRate>90</totalBranchRate>
  13. </check>
  14. </configuration>
  15. <executions>
  16. <execution>
  17. <phase>verify</phase>
  18. <goals>
  19. <goal>check</goal>
  20. </goals>
  21. </execution>
  22. </executions>
  23. </plugin>
Add Comment
Please, Sign In to add comment