Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.pitest</groupId>
  3. <artifactId>pitest-maven</artifactId>
  4. <version>1.1.8</version>
  5. <configuration>
  6. <targetClasses>
  7. <param>com.core.*</param>
  8. </targetClasses>
  9. <targetTests>
  10. <param>com.core.*</param>
  11. </targetTests>
  12. <mutators>
  13. <mutator>ALL</mutator>
  14. </mutators>
  15. <outputFormats>
  16. <outputFormat>HTML</outputFormat>
  17. <outputFormat>XML</outputFormat>
  18. </outputFormats>
  19. <timestampedReports>false</timestampedReports>
  20. </configuration>
  21. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement