pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.3.5</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. <exclusions>
  30. <exclusion>
  31. <!-- conflict with codacy-coverage-reporter -->
  32. <groupId>org.apache.logging.log4j</groupId>
  33. <artifactId>*</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <!-- binary dependency used during build -->
  38. <dependency>
  39. <groupId>com.codacy</groupId>
  40. <artifactId>codacy-coverage-reporter</artifactId>
  41. <version>1.0.13</version>
  42. <classifier>assembly</classifier>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>*</groupId>
  46. <artifactId>*</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.jacoco</groupId>
  55. <artifactId>jacoco-maven-plugin</artifactId>
  56. <executions>
  57. <execution>
  58. <id>report-aggregate</id>
  59. <phase>verify</phase>
  60. <goals>
  61. <goal>report-aggregate</goal>
  62. </goals>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.codehaus.mojo</groupId>
  68. <artifactId>exec-maven-plugin</artifactId>
  69. <version>1.5.0</version>
  70. <executions>
  71. <execution>
  72. <phase>verify</phase>
  73. <goals>
  74. <goal>java</goal>
  75. </goals>
  76. <configuration>
  77. <mainClass>com.codacy.CodacyCoverageReporter</mainClass>
  78. <arguments>
  79. <argument>-l</argument>
  80. <argument>Java</argument>
  81. <argument>-r</argument>
  82. <argument>${project.build.directory}/site/jacoco-aggregate/jacoco.xml</argument>
  83. </arguments>
  84. </configuration>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>