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 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2009-2010, Google Inc.
  4. Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com> and others
  5. This program and the accompanying materials are made available under the
  6. terms of the Eclipse Distribution License v. 1.0 which is available at
  7. http://www.eclipse.org/org/documents/edl-v10.php.
  8. SPDX-License-Identifier: BSD-3-Clause
  9. -->
  10. <project xmlns="http://maven.apache.org/POM/4.0.0"
  11. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  12. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  13. <modelVersion>4.0.0</modelVersion>
  14. <parent>
  15. <groupId>org.eclipse.jgit</groupId>
  16. <artifactId>org.eclipse.jgit-parent</artifactId>
  17. <version>5.13.0-SNAPSHOT</version>
  18. </parent>
  19. <artifactId>org.eclipse.jgit.http.test</artifactId>
  20. <name>JGit - HTTP Tests</name>
  21. <description>
  22. Tests for the HTTP transport.
  23. </description>
  24. <properties>
  25. <maven.javadoc.skip>true</maven.javadoc.skip>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.eclipse.jgit</groupId>
  35. <artifactId>org.eclipse.jgit</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.eclipse.jgit</groupId>
  40. <artifactId>org.eclipse.jgit.http.apache</artifactId>
  41. <version>${project.version}</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.hamcrest</groupId>
  46. <artifactId>hamcrest-library</artifactId>
  47. <scope>test</scope>
  48. <version>[1.1.0,2.0.0)</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.eclipse.jgit</groupId>
  52. <artifactId>org.eclipse.jgit.junit.http</artifactId>
  53. <version>${project.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.eclipse.jgit</groupId>
  57. <artifactId>org.eclipse.jgit.junit</artifactId>
  58. <version>${project.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.eclipse.jgit</groupId>
  62. <artifactId>org.eclipse.jgit.http.server</artifactId>
  63. <version>${project.version}</version>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.eclipse.jetty</groupId>
  68. <artifactId>jetty-servlet</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <sourceDirectory>src/</sourceDirectory>
  73. <testSourceDirectory>tst/</testSourceDirectory>
  74. <testResources>
  75. <testResource>
  76. <directory>tst-rsrc/</directory>
  77. </testResource>
  78. </testResources>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-jar-plugin</artifactId>
  83. <executions>
  84. <execution>
  85. <goals>
  86. <goal>test-jar</goal>
  87. </goals>
  88. </execution>
  89. </executions>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-surefire-plugin</artifactId>
  93. <configuration>
  94. <argLine>@{argLine} -Djava.io.tmpdir=${project.build.directory} -Xmx512m</argLine>
  95. <includes>
  96. <include>**/*Test.java</include>
  97. <include>**/*Tests.java</include>
  98. </includes>
  99. </configuration>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>