xref: /JGit/org.eclipse.jgit.pgm.test/pom.xml (revision e19e859977525c2a39aaa928dfdef20e5fab7e3c)
1a2dac2c7STomasz Zarna<?xml version="1.0" encoding="UTF-8"?>
2a2dac2c7STomasz Zarna<!--
3a2dac2c7STomasz Zarna   Copyright (C) 2012, IBM Corporation
4a2dac2c7STomasz Zarna   and other copyright owners as documented in the project's IP log.
5a2dac2c7STomasz Zarna
6a2dac2c7STomasz Zarna   This program and the accompanying materials are made available
7a2dac2c7STomasz Zarna   under the terms of the Eclipse Distribution License v1.0 which
8a2dac2c7STomasz Zarna   accompanies this distribution, is reproduced below, and is
9a2dac2c7STomasz Zarna   available at http://www.eclipse.org/org/documents/edl-v10.php
10a2dac2c7STomasz Zarna
11a2dac2c7STomasz Zarna   All rights reserved.
12a2dac2c7STomasz Zarna
13a2dac2c7STomasz Zarna   Redistribution and use in source and binary forms, with or
14a2dac2c7STomasz Zarna   without modification, are permitted provided that the following
15a2dac2c7STomasz Zarna   conditions are met:
16a2dac2c7STomasz Zarna
17a2dac2c7STomasz Zarna   - Redistributions of source code must retain the above copyright
18a2dac2c7STomasz Zarna     notice, this list of conditions and the following disclaimer.
19a2dac2c7STomasz Zarna
20a2dac2c7STomasz Zarna   - Redistributions in binary form must reproduce the above
21a2dac2c7STomasz Zarna     copyright notice, this list of conditions and the following
22a2dac2c7STomasz Zarna     disclaimer in the documentation and/or other materials provided
23a2dac2c7STomasz Zarna     with the distribution.
24a2dac2c7STomasz Zarna
25a2dac2c7STomasz Zarna   - Neither the name of the Eclipse Foundation, Inc. nor the
26a2dac2c7STomasz Zarna     names of its contributors may be used to endorse or promote
27a2dac2c7STomasz Zarna     products derived from this software without specific prior
28a2dac2c7STomasz Zarna     written permission.
29a2dac2c7STomasz Zarna
30a2dac2c7STomasz Zarna   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31a2dac2c7STomasz Zarna   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32a2dac2c7STomasz Zarna   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33a2dac2c7STomasz Zarna   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34a2dac2c7STomasz Zarna   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35a2dac2c7STomasz Zarna   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36a2dac2c7STomasz Zarna   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37a2dac2c7STomasz Zarna   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38a2dac2c7STomasz Zarna   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39a2dac2c7STomasz Zarna   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40a2dac2c7STomasz Zarna   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41a2dac2c7STomasz Zarna   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42a2dac2c7STomasz Zarna   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43a2dac2c7STomasz Zarna-->
44a2dac2c7STomasz Zarna
45a2dac2c7STomasz Zarna<project xmlns="http://maven.apache.org/POM/4.0.0"
46a2dac2c7STomasz Zarna    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
47a2dac2c7STomasz Zarna    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
48a2dac2c7STomasz Zarna  <modelVersion>4.0.0</modelVersion>
49a2dac2c7STomasz Zarna
50a2dac2c7STomasz Zarna  <parent>
51a2dac2c7STomasz Zarna    <groupId>org.eclipse.jgit</groupId>
52a2dac2c7STomasz Zarna    <artifactId>org.eclipse.jgit-parent</artifactId>
5390107d53SMatthias Sohn    <version>5.4.0-SNAPSHOT</version>
54a2dac2c7STomasz Zarna  </parent>
55a2dac2c7STomasz Zarna
56a2dac2c7STomasz Zarna  <artifactId>org.eclipse.jgit.pgm.test</artifactId>
57a2dac2c7STomasz Zarna  <name>JGit - Command Line Interface Tests</name>
58a2dac2c7STomasz Zarna
59a2dac2c7STomasz Zarna  <description>
60a2dac2c7STomasz Zarna    Tests for command line client tools built on top of JGit.
61a2dac2c7STomasz Zarna  </description>
62a2dac2c7STomasz Zarna
63a2dac2c7STomasz Zarna  <dependencies>
64a2dac2c7STomasz Zarna    <dependency>
65a2dac2c7STomasz Zarna      <groupId>junit</groupId>
66a2dac2c7STomasz Zarna      <artifactId>junit</artifactId>
67a2dac2c7STomasz Zarna      <scope>compile</scope>
68a2dac2c7STomasz Zarna    </dependency>
69a2dac2c7STomasz Zarna
70a2dac2c7STomasz Zarna    <dependency>
71a2dac2c7STomasz Zarna      <groupId>args4j</groupId>
72a2dac2c7STomasz Zarna      <artifactId>args4j</artifactId>
73a2dac2c7STomasz Zarna    </dependency>
74a2dac2c7STomasz Zarna
75a2dac2c7STomasz Zarna    <dependency>
76a2dac2c7STomasz Zarna      <groupId>org.eclipse.jgit</groupId>
77a2dac2c7STomasz Zarna      <artifactId>org.eclipse.jgit.junit</artifactId>
78a2dac2c7STomasz Zarna      <version>${project.version}</version>
79a2dac2c7STomasz Zarna    </dependency>
80a2dac2c7STomasz Zarna
81a2dac2c7STomasz Zarna    <dependency>
82a2dac2c7STomasz Zarna      <groupId>org.eclipse.jgit</groupId>
83a2dac2c7STomasz Zarna      <artifactId>org.eclipse.jgit.pgm</artifactId>
84a2dac2c7STomasz Zarna      <version>${project.version}</version>
85a2dac2c7STomasz Zarna    </dependency>
86a2dac2c7STomasz Zarna
8713ba592fSDavid Pursehouse    <dependency>
8813ba592fSDavid Pursehouse      <groupId>org.tukaani</groupId>
8913ba592fSDavid Pursehouse      <artifactId>xz</artifactId>
9013ba592fSDavid Pursehouse      <optional>true</optional>
9113ba592fSDavid Pursehouse    </dependency>
92a2dac2c7STomasz Zarna  </dependencies>
93a2dac2c7STomasz Zarna
94a2dac2c7STomasz Zarna  <build>
95a2dac2c7STomasz Zarna    <sourceDirectory>src/</sourceDirectory>
96a2dac2c7STomasz Zarna    <testSourceDirectory>tst/</testSourceDirectory>
97b97a35d7SMatthias Sohn    <plugins>
98b97a35d7SMatthias Sohn      <plugin>
99b97a35d7SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
100b97a35d7SMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
101b97a35d7SMatthias Sohn        <executions>
102b97a35d7SMatthias Sohn          <execution>
103b97a35d7SMatthias Sohn            <goals>
104b97a35d7SMatthias Sohn              <goal>test-jar</goal>
105b97a35d7SMatthias Sohn            </goals>
106b97a35d7SMatthias Sohn          </execution>
107b97a35d7SMatthias Sohn        </executions>
108b97a35d7SMatthias Sohn      </plugin>
109b97a35d7SMatthias Sohn      <plugin>
110b97a35d7SMatthias Sohn        <artifactId>maven-surefire-plugin</artifactId>
111b97a35d7SMatthias Sohn        <configuration>
112*e19e8599SMatthias Sohn          <argLine>@{argLine} -Xmx512m -Djava.io.tmpdir=${project.build.directory}</argLine>
113b97a35d7SMatthias Sohn        </configuration>
114b97a35d7SMatthias Sohn      </plugin>
115b97a35d7SMatthias Sohn    </plugins>
116a2dac2c7STomasz Zarna  </build>
117a2dac2c7STomasz Zarna</project>
118