xref: /JGit/org.eclipse.jgit.pgm.test/pom.xml (revision b97a35d7cfbcd70a7eae158f817bfbf7ea81a969)
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>
53fdd1ac93SMatthias Sohn    <version>3.0.2-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
63dd318160SRobin Rosenberg  <profiles>
64dd318160SRobin Rosenberg    <profile>
65dd318160SRobin Rosenberg      <id>jgit.java7</id>
66dd318160SRobin Rosenberg      <activation>
67dd318160SRobin Rosenberg	<jdk>1.7</jdk>
68dd318160SRobin Rosenberg      </activation>
69dd318160SRobin Rosenberg      <dependencies>
70dd318160SRobin Rosenberg	<dependency>
71dd318160SRobin Rosenberg	  <groupId>org.eclipse.jgit</groupId>
72dd318160SRobin Rosenberg	  <artifactId>org.eclipse.jgit.java7</artifactId>
73dd318160SRobin Rosenberg	  <version>${project.version}</version>
74dd318160SRobin Rosenberg	  <optional>true</optional>
75dd318160SRobin Rosenberg	</dependency>
76dd318160SRobin Rosenberg      </dependencies>
77dd318160SRobin Rosenberg    </profile>
78dd318160SRobin Rosenberg  </profiles>
79dd318160SRobin Rosenberg
80a2dac2c7STomasz Zarna  <dependencies>
81a2dac2c7STomasz Zarna    <dependency>
82a2dac2c7STomasz Zarna      <groupId>junit</groupId>
83a2dac2c7STomasz Zarna      <artifactId>junit</artifactId>
84a2dac2c7STomasz Zarna      <scope>compile</scope>
85a2dac2c7STomasz Zarna    </dependency>
86a2dac2c7STomasz Zarna
87a2dac2c7STomasz Zarna    <dependency>
88a2dac2c7STomasz Zarna      <groupId>args4j</groupId>
89a2dac2c7STomasz Zarna      <artifactId>args4j</artifactId>
90a2dac2c7STomasz Zarna    </dependency>
91a2dac2c7STomasz Zarna
92a2dac2c7STomasz Zarna    <dependency>
93a2dac2c7STomasz Zarna      <groupId>org.eclipse.jgit</groupId>
94a2dac2c7STomasz Zarna      <artifactId>org.eclipse.jgit.junit</artifactId>
95a2dac2c7STomasz Zarna      <version>${project.version}</version>
96a2dac2c7STomasz Zarna    </dependency>
97a2dac2c7STomasz Zarna
98a2dac2c7STomasz Zarna    <dependency>
99a2dac2c7STomasz Zarna      <groupId>org.eclipse.jgit</groupId>
100a2dac2c7STomasz Zarna      <artifactId>org.eclipse.jgit.pgm</artifactId>
101a2dac2c7STomasz Zarna      <version>${project.version}</version>
102a2dac2c7STomasz Zarna    </dependency>
103a2dac2c7STomasz Zarna
104a2dac2c7STomasz Zarna  </dependencies>
105a2dac2c7STomasz Zarna
106a2dac2c7STomasz Zarna  <build>
107a2dac2c7STomasz Zarna    <sourceDirectory>src/</sourceDirectory>
108a2dac2c7STomasz Zarna    <testSourceDirectory>tst/</testSourceDirectory>
109*b97a35d7SMatthias Sohn    <plugins>
110*b97a35d7SMatthias Sohn      <plugin>
111*b97a35d7SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
112*b97a35d7SMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
113*b97a35d7SMatthias Sohn        <executions>
114*b97a35d7SMatthias Sohn          <execution>
115*b97a35d7SMatthias Sohn            <goals>
116*b97a35d7SMatthias Sohn              <goal>test-jar</goal>
117*b97a35d7SMatthias Sohn            </goals>
118*b97a35d7SMatthias Sohn          </execution>
119*b97a35d7SMatthias Sohn        </executions>
120*b97a35d7SMatthias Sohn      </plugin>
121*b97a35d7SMatthias Sohn      <plugin>
122*b97a35d7SMatthias Sohn        <artifactId>maven-surefire-plugin</artifactId>
123*b97a35d7SMatthias Sohn        <configuration>
124*b97a35d7SMatthias Sohn          <argLine>-Djava.io.tmpdir=${project.build.directory}</argLine>
125*b97a35d7SMatthias Sohn        </configuration>
126*b97a35d7SMatthias Sohn      </plugin>
127*b97a35d7SMatthias Sohn    </plugins>
128a2dac2c7STomasz Zarna  </build>
129a2dac2c7STomasz Zarna</project>
130