xref: /JGit/org.eclipse.jgit.http.test/pom.xml (revision 3b526f863aa154e76ac9d93547ac7a90f6e579e0)
1f5eb0d93SShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?>
2f5eb0d93SShawn O. Pearce<!--
3f5eb0d93SShawn O. Pearce   Copyright (C) 2009-2010, Google Inc.
4f5eb0d93SShawn O. Pearce   Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com>
5f5eb0d93SShawn O. Pearce   and other copyright owners as documented in the project's IP log.
6f5eb0d93SShawn O. Pearce
7f5eb0d93SShawn O. Pearce   This program and the accompanying materials are made available
8f5eb0d93SShawn O. Pearce   under the terms of the Eclipse Distribution License v1.0 which
9f5eb0d93SShawn O. Pearce   accompanies this distribution, is reproduced below, and is
10f5eb0d93SShawn O. Pearce   available at http://www.eclipse.org/org/documents/edl-v10.php
11f5eb0d93SShawn O. Pearce
12f5eb0d93SShawn O. Pearce   All rights reserved.
13f5eb0d93SShawn O. Pearce
14f5eb0d93SShawn O. Pearce   Redistribution and use in source and binary forms, with or
15f5eb0d93SShawn O. Pearce   without modification, are permitted provided that the following
16f5eb0d93SShawn O. Pearce   conditions are met:
17f5eb0d93SShawn O. Pearce
18f5eb0d93SShawn O. Pearce   - Redistributions of source code must retain the above copyright
19f5eb0d93SShawn O. Pearce     notice, this list of conditions and the following disclaimer.
20f5eb0d93SShawn O. Pearce
21f5eb0d93SShawn O. Pearce   - Redistributions in binary form must reproduce the above
22f5eb0d93SShawn O. Pearce     copyright notice, this list of conditions and the following
23f5eb0d93SShawn O. Pearce     disclaimer in the documentation and/or other materials provided
24f5eb0d93SShawn O. Pearce     with the distribution.
25f5eb0d93SShawn O. Pearce
26f5eb0d93SShawn O. Pearce   - Neither the name of the Eclipse Foundation, Inc. nor the
27f5eb0d93SShawn O. Pearce     names of its contributors may be used to endorse or promote
28f5eb0d93SShawn O. Pearce     products derived from this software without specific prior
29f5eb0d93SShawn O. Pearce     written permission.
30f5eb0d93SShawn O. Pearce
31f5eb0d93SShawn O. Pearce   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
32f5eb0d93SShawn O. Pearce   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
33f5eb0d93SShawn O. Pearce   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34f5eb0d93SShawn O. Pearce   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35f5eb0d93SShawn O. Pearce   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
36f5eb0d93SShawn O. Pearce   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
37f5eb0d93SShawn O. Pearce   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
38f5eb0d93SShawn O. Pearce   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
39f5eb0d93SShawn O. Pearce   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
40f5eb0d93SShawn O. Pearce   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
41f5eb0d93SShawn O. Pearce   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
42f5eb0d93SShawn O. Pearce   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
43f5eb0d93SShawn O. Pearce   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44f5eb0d93SShawn O. Pearce-->
45f5eb0d93SShawn O. Pearce
46f5eb0d93SShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0"
47f5eb0d93SShawn O. Pearce    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
48f5eb0d93SShawn O. Pearce    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
49f5eb0d93SShawn O. Pearce  <modelVersion>4.0.0</modelVersion>
50f5eb0d93SShawn O. Pearce
51f5eb0d93SShawn O. Pearce  <parent>
52f5eb0d93SShawn O. Pearce    <groupId>org.eclipse.jgit</groupId>
53f5eb0d93SShawn O. Pearce    <artifactId>org.eclipse.jgit-parent</artifactId>
54ccf83636SMatthias Sohn    <version>4.4.0-SNAPSHOT</version>
55f5eb0d93SShawn O. Pearce  </parent>
56f5eb0d93SShawn O. Pearce
57f5eb0d93SShawn O. Pearce  <artifactId>org.eclipse.jgit.http.test</artifactId>
58f5eb0d93SShawn O. Pearce  <name>JGit - HTTP Tests</name>
59f5eb0d93SShawn O. Pearce
60f5eb0d93SShawn O. Pearce  <description>
61f5eb0d93SShawn O. Pearce    Tests for the HTTP transport.
62f5eb0d93SShawn O. Pearce  </description>
63f5eb0d93SShawn O. Pearce
64f5eb0d93SShawn O. Pearce  <dependencies>
65f5eb0d93SShawn O. Pearce    <dependency>
66f5eb0d93SShawn O. Pearce      <groupId>junit</groupId>
67f5eb0d93SShawn O. Pearce      <artifactId>junit</artifactId>
68f5eb0d93SShawn O. Pearce      <scope>test</scope>
69f5eb0d93SShawn O. Pearce    </dependency>
70f5eb0d93SShawn O. Pearce
71f5eb0d93SShawn O. Pearce    <dependency>
72f5eb0d93SShawn O. Pearce      <groupId>org.eclipse.jgit</groupId>
73f5eb0d93SShawn O. Pearce      <artifactId>org.eclipse.jgit</artifactId>
74f5eb0d93SShawn O. Pearce      <version>${project.version}</version>
75f5eb0d93SShawn O. Pearce    </dependency>
76f5eb0d93SShawn O. Pearce
77f5eb0d93SShawn O. Pearce    <dependency>
78f5eb0d93SShawn O. Pearce      <groupId>org.eclipse.jgit</groupId>
793d3df394SMatthias Sohn      <artifactId>org.eclipse.jgit.http.apache</artifactId>
803d3df394SMatthias Sohn      <version>${project.version}</version>
813d3df394SMatthias Sohn      <scope>test</scope>
823d3df394SMatthias Sohn    </dependency>
833d3df394SMatthias Sohn
843d3df394SMatthias Sohn    <dependency>
853d3df394SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
8651e2646dSJens Baumgart      <artifactId>org.eclipse.jgit.junit.http</artifactId>
8751e2646dSJens Baumgart      <version>${project.version}</version>
8851e2646dSJens Baumgart      <scope>test</scope>
8951e2646dSJens Baumgart    </dependency>
9051e2646dSJens Baumgart
9151e2646dSJens Baumgart    <dependency>
9251e2646dSJens Baumgart      <groupId>org.eclipse.jgit</groupId>
93f5eb0d93SShawn O. Pearce      <artifactId>org.eclipse.jgit.junit</artifactId>
94f5eb0d93SShawn O. Pearce      <version>${project.version}</version>
95f5eb0d93SShawn O. Pearce      <scope>test</scope>
96f5eb0d93SShawn O. Pearce    </dependency>
97f5eb0d93SShawn O. Pearce
98f5eb0d93SShawn O. Pearce    <dependency>
99f5eb0d93SShawn O. Pearce      <groupId>org.eclipse.jgit</groupId>
100f5eb0d93SShawn O. Pearce      <artifactId>org.eclipse.jgit.http.server</artifactId>
101f5eb0d93SShawn O. Pearce      <version>${project.version}</version>
102f5eb0d93SShawn O. Pearce      <scope>test</scope>
103f5eb0d93SShawn O. Pearce    </dependency>
104f5eb0d93SShawn O. Pearce
105f5eb0d93SShawn O. Pearce    <dependency>
106f5eb0d93SShawn O. Pearce      <groupId>org.eclipse.jetty</groupId>
107f5eb0d93SShawn O. Pearce      <artifactId>jetty-servlet</artifactId>
108f5eb0d93SShawn O. Pearce      <scope>test</scope>
109f5eb0d93SShawn O. Pearce    </dependency>
110f5eb0d93SShawn O. Pearce  </dependencies>
111f5eb0d93SShawn O. Pearce
112f5eb0d93SShawn O. Pearce  <build>
113*3b526f86SMike Edgar    <sourceDirectory>src/</sourceDirectory>
114f5eb0d93SShawn O. Pearce    <testSourceDirectory>tst/</testSourceDirectory>
115f5eb0d93SShawn O. Pearce
116f5eb0d93SShawn O. Pearce    <testResources>
117f5eb0d93SShawn O. Pearce      <testResource>
118f5eb0d93SShawn O. Pearce        <directory>tst-rsrc/</directory>
119f5eb0d93SShawn O. Pearce      </testResource>
120f5eb0d93SShawn O. Pearce    </testResources>
1214045e7e9SRobin Rosenberg    <plugins>
1224045e7e9SRobin Rosenberg      <plugin>
123b97a35d7SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
124b97a35d7SMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
125b97a35d7SMatthias Sohn        <executions>
126b97a35d7SMatthias Sohn          <execution>
127b97a35d7SMatthias Sohn            <goals>
128b97a35d7SMatthias Sohn              <goal>test-jar</goal>
129b97a35d7SMatthias Sohn            </goals>
130b97a35d7SMatthias Sohn          </execution>
131b97a35d7SMatthias Sohn        </executions>
132b97a35d7SMatthias Sohn      </plugin>
133b97a35d7SMatthias Sohn      <plugin>
1344045e7e9SRobin Rosenberg        <artifactId>maven-surefire-plugin</artifactId>
1354045e7e9SRobin Rosenberg        <configuration>
1364b8a848aSMatthias Sohn          <argLine>-Djava.io.tmpdir=${project.build.directory}  -Xmx300m</argLine>
13780bf52dfSMatthias Sohn          <includes>
13880bf52dfSMatthias Sohn            <include>**/*Test.java</include>
13980bf52dfSMatthias Sohn            <include>**/*Tests.java</include>
14080bf52dfSMatthias Sohn          </includes>
1414045e7e9SRobin Rosenberg        </configuration>
1424045e7e9SRobin Rosenberg      </plugin>
1434045e7e9SRobin Rosenberg    </plugins>
144f5eb0d93SShawn O. Pearce  </build>
145f5eb0d93SShawn O. Pearce</project>
146