1f5eb0d93SShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?> 2f5eb0d93SShawn O. Pearce<!-- 3f5eb0d93SShawn O. Pearce Copyright (C) 2009-2010, Google Inc. 45c5f7c6bSMatthias Sohn Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com> and others 5f5eb0d93SShawn O. Pearce 65c5f7c6bSMatthias Sohn This program and the accompanying materials are made available under the 75c5f7c6bSMatthias Sohn terms of the Eclipse Distribution License v. 1.0 which is available at 85c5f7c6bSMatthias Sohn http://www.eclipse.org/org/documents/edl-v10.php. 9f5eb0d93SShawn O. Pearce 105c5f7c6bSMatthias Sohn SPDX-License-Identifier: BSD-3-Clause 11f5eb0d93SShawn O. Pearce--> 12f5eb0d93SShawn O. Pearce 13f5eb0d93SShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0" 14f5eb0d93SShawn O. Pearce xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 15f5eb0d93SShawn O. Pearce xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 16f5eb0d93SShawn O. Pearce <modelVersion>4.0.0</modelVersion> 17f5eb0d93SShawn O. Pearce 18f5eb0d93SShawn O. Pearce <parent> 19f5eb0d93SShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 20f5eb0d93SShawn O. Pearce <artifactId>org.eclipse.jgit-parent</artifactId> 21*1cbfea9eSMatthias Sohn <version>5.13.0-SNAPSHOT</version> 22f5eb0d93SShawn O. Pearce </parent> 23f5eb0d93SShawn O. Pearce 24f5eb0d93SShawn O. Pearce <artifactId>org.eclipse.jgit.http.test</artifactId> 25f5eb0d93SShawn O. Pearce <name>JGit - HTTP Tests</name> 26f5eb0d93SShawn O. Pearce 27f5eb0d93SShawn O. Pearce <description> 28f5eb0d93SShawn O. Pearce Tests for the HTTP transport. 29f5eb0d93SShawn O. Pearce </description> 3082861235SMatthias Sohn <properties> 3182861235SMatthias Sohn <maven.javadoc.skip>true</maven.javadoc.skip> 3282861235SMatthias Sohn </properties> 33f5eb0d93SShawn O. Pearce <dependencies> 34f5eb0d93SShawn O. Pearce <dependency> 35f5eb0d93SShawn O. Pearce <groupId>junit</groupId> 36f5eb0d93SShawn O. Pearce <artifactId>junit</artifactId> 37f5eb0d93SShawn O. Pearce <scope>test</scope> 38f5eb0d93SShawn O. Pearce </dependency> 39f5eb0d93SShawn O. Pearce 40f5eb0d93SShawn O. Pearce <dependency> 41f5eb0d93SShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 42f5eb0d93SShawn O. Pearce <artifactId>org.eclipse.jgit</artifactId> 43f5eb0d93SShawn O. Pearce <version>${project.version}</version> 44f5eb0d93SShawn O. Pearce </dependency> 45f5eb0d93SShawn O. Pearce 46f5eb0d93SShawn O. Pearce <dependency> 47f5eb0d93SShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 483d3df394SMatthias Sohn <artifactId>org.eclipse.jgit.http.apache</artifactId> 493d3df394SMatthias Sohn <version>${project.version}</version> 503d3df394SMatthias Sohn <scope>test</scope> 513d3df394SMatthias Sohn </dependency> 523d3df394SMatthias Sohn 533d3df394SMatthias Sohn <dependency> 54f516c1dfSJonathan Tan <groupId>org.hamcrest</groupId> 55f516c1dfSJonathan Tan <artifactId>hamcrest-library</artifactId> 56f516c1dfSJonathan Tan <scope>test</scope> 57f516c1dfSJonathan Tan <version>[1.1.0,2.0.0)</version> 58f516c1dfSJonathan Tan </dependency> 59f516c1dfSJonathan Tan 60f516c1dfSJonathan Tan <dependency> 613d3df394SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 6251e2646dSJens Baumgart <artifactId>org.eclipse.jgit.junit.http</artifactId> 6351e2646dSJens Baumgart <version>${project.version}</version> 6451e2646dSJens Baumgart </dependency> 6551e2646dSJens Baumgart 6651e2646dSJens Baumgart <dependency> 6751e2646dSJens Baumgart <groupId>org.eclipse.jgit</groupId> 68f5eb0d93SShawn O. Pearce <artifactId>org.eclipse.jgit.junit</artifactId> 69f5eb0d93SShawn O. Pearce <version>${project.version}</version> 70f5eb0d93SShawn O. Pearce </dependency> 71f5eb0d93SShawn O. Pearce 72f5eb0d93SShawn O. Pearce <dependency> 73f5eb0d93SShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 74f5eb0d93SShawn O. Pearce <artifactId>org.eclipse.jgit.http.server</artifactId> 75f5eb0d93SShawn O. Pearce <version>${project.version}</version> 76f5eb0d93SShawn O. Pearce <scope>test</scope> 77f5eb0d93SShawn O. Pearce </dependency> 78f5eb0d93SShawn O. Pearce 79f5eb0d93SShawn O. Pearce <dependency> 80f5eb0d93SShawn O. Pearce <groupId>org.eclipse.jetty</groupId> 81f5eb0d93SShawn O. Pearce <artifactId>jetty-servlet</artifactId> 82f5eb0d93SShawn O. Pearce </dependency> 83f5eb0d93SShawn O. Pearce </dependencies> 84f5eb0d93SShawn O. Pearce 85f5eb0d93SShawn O. Pearce <build> 863b526f86SMike Edgar <sourceDirectory>src/</sourceDirectory> 87f5eb0d93SShawn O. Pearce <testSourceDirectory>tst/</testSourceDirectory> 88f5eb0d93SShawn O. Pearce 89f5eb0d93SShawn O. Pearce <testResources> 90f5eb0d93SShawn O. Pearce <testResource> 91f5eb0d93SShawn O. Pearce <directory>tst-rsrc/</directory> 92f5eb0d93SShawn O. Pearce </testResource> 93f5eb0d93SShawn O. Pearce </testResources> 944045e7e9SRobin Rosenberg <plugins> 954045e7e9SRobin Rosenberg <plugin> 96b97a35d7SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 97b97a35d7SMatthias Sohn <artifactId>maven-jar-plugin</artifactId> 98b97a35d7SMatthias Sohn <executions> 99b97a35d7SMatthias Sohn <execution> 100b97a35d7SMatthias Sohn <goals> 101b97a35d7SMatthias Sohn <goal>test-jar</goal> 102b97a35d7SMatthias Sohn </goals> 103b97a35d7SMatthias Sohn </execution> 104b97a35d7SMatthias Sohn </executions> 105b97a35d7SMatthias Sohn </plugin> 106b97a35d7SMatthias Sohn <plugin> 1074045e7e9SRobin Rosenberg <artifactId>maven-surefire-plugin</artifactId> 1084045e7e9SRobin Rosenberg <configuration> 109e19e8599SMatthias Sohn <argLine>@{argLine} -Djava.io.tmpdir=${project.build.directory} -Xmx512m</argLine> 11080bf52dfSMatthias Sohn <includes> 11180bf52dfSMatthias Sohn <include>**/*Test.java</include> 11280bf52dfSMatthias Sohn <include>**/*Tests.java</include> 11380bf52dfSMatthias Sohn </includes> 1144045e7e9SRobin Rosenberg </configuration> 1154045e7e9SRobin Rosenberg </plugin> 1164045e7e9SRobin Rosenberg </plugins> 117f5eb0d93SShawn O. Pearce </build> 118f5eb0d93SShawn O. Pearce</project> 119