Advertisement
Javi

ci: Configuración cortana en maven

Jun 17th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. Configuración cobertura:
  2.  
  3. <plugin>
  4. <groupId>org.codehaus.mojo</groupId>
  5. <artifactId>cobertura-maven-plugin</artifactId>
  6. <version>2.7</version>
  7. <configuration>
  8. <formats>
  9. <format>xml</format>
  10. </formats>
  11. </configuration>
  12. <executions>
  13. <execution>
  14. <phase>package</phase>
  15. <goals>
  16. <goal>cobertura</goal>
  17. </goals>
  18. </execution>
  19. </executions>
  20. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement