xref: /JGit/org.eclipse.jgit.pgm.test/pom.xml (revision 5c5f7c6b146b24f2bd4afae1902df85ad6e57ea3)
1a2dac2c7STomasz Zarna<?xml version="1.0" encoding="UTF-8"?>
2a2dac2c7STomasz Zarna<!--
3*5c5f7c6bSMatthias Sohn  Copyright (C) 2012, IBM Corporation and others
4a2dac2c7STomasz Zarna
5*5c5f7c6bSMatthias Sohn  This program and the accompanying materials are made available under the
6*5c5f7c6bSMatthias Sohn  terms of the Eclipse Distribution License v. 1.0 which is available at
7*5c5f7c6bSMatthias Sohn  http://www.eclipse.org/org/documents/edl-v10.php.
8a2dac2c7STomasz Zarna
9*5c5f7c6bSMatthias Sohn  SPDX-License-Identifier: BSD-3-Clause
10a2dac2c7STomasz Zarna-->
11a2dac2c7STomasz Zarna
12a2dac2c7STomasz Zarna<project xmlns="http://maven.apache.org/POM/4.0.0"
13a2dac2c7STomasz Zarna    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14a2dac2c7STomasz Zarna    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15a2dac2c7STomasz Zarna  <modelVersion>4.0.0</modelVersion>
16a2dac2c7STomasz Zarna
17a2dac2c7STomasz Zarna  <parent>
18a2dac2c7STomasz Zarna    <groupId>org.eclipse.jgit</groupId>
19a2dac2c7STomasz Zarna    <artifactId>org.eclipse.jgit-parent</artifactId>
20f487a9ebSMatthias Sohn    <version>5.7.0-SNAPSHOT</version>
21a2dac2c7STomasz Zarna  </parent>
22a2dac2c7STomasz Zarna
23a2dac2c7STomasz Zarna  <artifactId>org.eclipse.jgit.pgm.test</artifactId>
24a2dac2c7STomasz Zarna  <name>JGit - Command Line Interface Tests</name>
25a2dac2c7STomasz Zarna
26a2dac2c7STomasz Zarna  <description>
27a2dac2c7STomasz Zarna    Tests for command line client tools built on top of JGit.
28a2dac2c7STomasz Zarna  </description>
29a2dac2c7STomasz Zarna
30a2dac2c7STomasz Zarna  <dependencies>
31a2dac2c7STomasz Zarna    <dependency>
32a2dac2c7STomasz Zarna      <groupId>junit</groupId>
33a2dac2c7STomasz Zarna      <artifactId>junit</artifactId>
34a2dac2c7STomasz Zarna      <scope>compile</scope>
35a2dac2c7STomasz Zarna    </dependency>
36a2dac2c7STomasz Zarna
37a2dac2c7STomasz Zarna    <dependency>
38a2dac2c7STomasz Zarna      <groupId>args4j</groupId>
39a2dac2c7STomasz Zarna      <artifactId>args4j</artifactId>
40a2dac2c7STomasz Zarna    </dependency>
41a2dac2c7STomasz Zarna
42a2dac2c7STomasz Zarna    <dependency>
43a2dac2c7STomasz Zarna      <groupId>org.eclipse.jgit</groupId>
44a2dac2c7STomasz Zarna      <artifactId>org.eclipse.jgit.junit</artifactId>
45a2dac2c7STomasz Zarna      <version>${project.version}</version>
46a2dac2c7STomasz Zarna    </dependency>
47a2dac2c7STomasz Zarna
48a2dac2c7STomasz Zarna    <dependency>
49a2dac2c7STomasz Zarna      <groupId>org.eclipse.jgit</groupId>
50a2dac2c7STomasz Zarna      <artifactId>org.eclipse.jgit.pgm</artifactId>
51a2dac2c7STomasz Zarna      <version>${project.version}</version>
52a2dac2c7STomasz Zarna    </dependency>
53a2dac2c7STomasz Zarna
5413ba592fSDavid Pursehouse    <dependency>
5513ba592fSDavid Pursehouse      <groupId>org.tukaani</groupId>
5613ba592fSDavid Pursehouse      <artifactId>xz</artifactId>
5713ba592fSDavid Pursehouse      <optional>true</optional>
5813ba592fSDavid Pursehouse    </dependency>
59a2dac2c7STomasz Zarna  </dependencies>
60a2dac2c7STomasz Zarna
61a2dac2c7STomasz Zarna  <build>
62a2dac2c7STomasz Zarna    <sourceDirectory>src/</sourceDirectory>
63a2dac2c7STomasz Zarna    <testSourceDirectory>tst/</testSourceDirectory>
64b97a35d7SMatthias Sohn    <plugins>
65b97a35d7SMatthias Sohn      <plugin>
66b97a35d7SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
67b97a35d7SMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
68b97a35d7SMatthias Sohn        <executions>
69b97a35d7SMatthias Sohn          <execution>
70b97a35d7SMatthias Sohn            <goals>
71b97a35d7SMatthias Sohn              <goal>test-jar</goal>
72b97a35d7SMatthias Sohn            </goals>
73b97a35d7SMatthias Sohn          </execution>
74b97a35d7SMatthias Sohn        </executions>
75b97a35d7SMatthias Sohn      </plugin>
76b97a35d7SMatthias Sohn      <plugin>
77b97a35d7SMatthias Sohn        <artifactId>maven-surefire-plugin</artifactId>
78b97a35d7SMatthias Sohn        <configuration>
79e19e8599SMatthias Sohn          <argLine>@{argLine} -Xmx512m -Djava.io.tmpdir=${project.build.directory}</argLine>
80b97a35d7SMatthias Sohn        </configuration>
81b97a35d7SMatthias Sohn      </plugin>
82b97a35d7SMatthias Sohn    </plugins>
83a2dac2c7STomasz Zarna  </build>
84a2dac2c7STomasz Zarna</project>
85