Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. ...
  2. <build>
  3. <plugins>
  4.  
  5. <plugin>
  6. <groupId>org.jacoco</groupId>
  7. <artifactId>jacoco-maven-plugin</artifactId>
  8. <version>0.7.6.201602180812</version>
  9. <executions>
  10. <execution>
  11. <id>agent</id>
  12. <goals>
  13. <goal>prepare-agent</goal>
  14. </goals>
  15. <configuration>
  16. <append>true</append>
  17. <destFile>${sonar.jacoco.reportPath}</destFile>
  18. </configuration>
  19. </execution>
  20. </executions>
  21. </plugin>
  22.  
  23. </plugins>
  24.  
  25. </build>
  26. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement