pom.xml 1020 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright (c) 2016 Sebastian Stenzel This file is licensed under the terms of the MIT license. See the LICENSE.txt file for more info. -->
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.cryptomator</groupId>
  7. <artifactId>main</artifactId>
  8. <version>1.3.0-rc1</version>
  9. </parent>
  10. <artifactId>jacoco-report</artifactId>
  11. <name>Cryptomator Code Coverage Report</name>
  12. <packaging>pom</packaging>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.jacoco</groupId>
  17. <artifactId>jacoco-maven-plugin</artifactId>
  18. <executions>
  19. <execution>
  20. <id>report-aggregate</id>
  21. <phase>verify</phase>
  22. <goals>
  23. <goal>report-aggregate</goal>
  24. </goals>
  25. </execution>
  26. </executions>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. </project>