pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.cryptomator</groupId>
  6. <artifactId>main</artifactId>
  7. <version>1.4.0-beta1</version>
  8. </parent>
  9. <artifactId>jacoco-report</artifactId>
  10. <name>Cryptomator Code Coverage Report</name>
  11. <packaging>pom</packaging>
  12. <dependencies>
  13. <!-- all modules containing unit tests: -->
  14. <dependency>
  15. <groupId>org.cryptomator</groupId>
  16. <artifactId>commons</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.cryptomator</groupId>
  20. <artifactId>keychain</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.cryptomator</groupId>
  24. <artifactId>ui</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.cryptomator</groupId>
  28. <artifactId>launcher</artifactId>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.jacoco</groupId>
  35. <artifactId>jacoco-maven-plugin</artifactId>
  36. <executions>
  37. <execution>
  38. <id>report-aggregate</id>
  39. <phase>verify</phase>
  40. <goals>
  41. <goal>report-aggregate</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>