You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?xml version="1.0"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>org.eclipse.jgit</groupId>
  7. <artifactId>org.eclipse.jgit-parent</artifactId>
  8. <version>5.3.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>org.eclipse.jgit.coverage</artifactId>
  12. <packaging>pom</packaging>
  13. <name>JGit - Test Coverage</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.eclipse.jgit</groupId>
  17. <artifactId>org.eclipse.jgit</artifactId>
  18. <version>5.3.1-SNAPSHOT</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.eclipse.jgit</groupId>
  22. <artifactId>org.eclipse.jgit.ant</artifactId>
  23. <version>5.3.1-SNAPSHOT</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.eclipse.jgit</groupId>
  27. <artifactId>org.eclipse.jgit.archive</artifactId>
  28. <version>5.3.1-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.eclipse.jgit</groupId>
  32. <artifactId>org.eclipse.jgit.http.apache</artifactId>
  33. <version>5.3.1-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.eclipse.jgit</groupId>
  37. <artifactId>org.eclipse.jgit.http.server</artifactId>
  38. <version>5.3.1-SNAPSHOT</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.eclipse.jgit</groupId>
  42. <artifactId>org.eclipse.jgit.lfs</artifactId>
  43. <version>5.3.1-SNAPSHOT</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.eclipse.jgit</groupId>
  47. <artifactId>org.eclipse.jgit.lfs.server</artifactId>
  48. <version>5.3.1-SNAPSHOT</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.eclipse.jgit</groupId>
  52. <artifactId>org.eclipse.jgit.pgm</artifactId>
  53. <version>5.3.1-SNAPSHOT</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.eclipse.jgit</groupId>
  57. <artifactId>org.eclipse.jgit.ui</artifactId>
  58. <version>5.3.1-SNAPSHOT</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.eclipse.jgit</groupId>
  62. <artifactId>org.eclipse.jgit.ssh.apache</artifactId>
  63. <version>5.3.1-SNAPSHOT</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.eclipse.jgit</groupId>
  67. <artifactId>org.eclipse.jgit.test</artifactId>
  68. <version>5.3.1-SNAPSHOT</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.eclipse.jgit</groupId>
  72. <artifactId>org.eclipse.jgit.ant.test</artifactId>
  73. <version>5.3.1-SNAPSHOT</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.eclipse.jgit</groupId>
  77. <artifactId>org.eclipse.jgit.http.test</artifactId>
  78. <version>5.3.1-SNAPSHOT</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.eclipse.jgit</groupId>
  82. <artifactId>org.eclipse.jgit.pgm.test</artifactId>
  83. <version>5.3.1-SNAPSHOT</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.eclipse.jgit</groupId>
  87. <artifactId>org.eclipse.jgit.lfs.test</artifactId>
  88. <version>5.3.1-SNAPSHOT</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.eclipse.jgit</groupId>
  92. <artifactId>org.eclipse.jgit.lfs.server.test</artifactId>
  93. <version>5.3.1-SNAPSHOT</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.eclipse.jgit</groupId>
  97. <artifactId>org.eclipse.jgit.ssh.apache.test</artifactId>
  98. <version>5.3.1-SNAPSHOT</version>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.jacoco</groupId>
  105. <artifactId>jacoco-maven-plugin</artifactId>
  106. <executions>
  107. <execution>
  108. <id>aggregate-reports-all</id>
  109. <phase>verify</phase>
  110. <goals>
  111. <goal>report-aggregate</goal>
  112. </goals>
  113. <configuration>
  114. <title>JGit Test Coverage </title>
  115. <outputDirectory>${project.reporting.outputDirectory}/jacoco-aggregate</outputDirectory>
  116. </configuration>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. <reporting>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.jacoco</groupId>
  126. <artifactId>jacoco-maven-plugin</artifactId>
  127. <reportSets>
  128. <reportSet>
  129. <id>aggregate</id>
  130. <reports>
  131. <report>report-aggregate</report>
  132. </reports>
  133. </reportSet>
  134. </reportSets>
  135. </plugin>
  136. </plugins>
  137. </reporting>
  138. </project>