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.8KB

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