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