pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>jacoco-report</artifactId>
  11. <name>Cryptomator Code Coverage Report</name>
  12. <dependencies>
  13. <!-- Commons -->
  14. <dependency>
  15. <groupId>org.cryptomator</groupId>
  16. <artifactId>commons</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.cryptomator</groupId>
  20. <artifactId>commons-test</artifactId>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.jacoco</groupId>
  27. <artifactId>jacoco-maven-plugin</artifactId>
  28. <executions>
  29. <execution>
  30. <id>report-aggregate</id>
  31. <phase>verify</phase>
  32. <goals>
  33. <goal>report-aggregate</goal>
  34. </goals>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>