1a2dac2c7STomasz Zarna<?xml version="1.0" encoding="UTF-8"?> 2a2dac2c7STomasz Zarna<!-- 35c5f7c6bSMatthias Sohn Copyright (C) 2012, IBM Corporation and others 4a2dac2c7STomasz Zarna 55c5f7c6bSMatthias Sohn This program and the accompanying materials are made available under the 65c5f7c6bSMatthias Sohn terms of the Eclipse Distribution License v. 1.0 which is available at 75c5f7c6bSMatthias Sohn http://www.eclipse.org/org/documents/edl-v10.php. 8a2dac2c7STomasz Zarna 95c5f7c6bSMatthias 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> 20*1cbfea9eSMatthias Sohn <version>5.13.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> 558d2d6836SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 568d2d6836SMatthias Sohn <artifactId>org.eclipse.jgit.ssh.jsch</artifactId> 578d2d6836SMatthias Sohn <version>${project.version}</version> 588d2d6836SMatthias Sohn </dependency> 598d2d6836SMatthias Sohn 608d2d6836SMatthias Sohn <dependency> 6113ba592fSDavid Pursehouse <groupId>org.tukaani</groupId> 6213ba592fSDavid Pursehouse <artifactId>xz</artifactId> 6313ba592fSDavid Pursehouse <optional>true</optional> 6413ba592fSDavid Pursehouse </dependency> 65a2dac2c7STomasz Zarna </dependencies> 66a2dac2c7STomasz Zarna 67a2dac2c7STomasz Zarna <build> 68a2dac2c7STomasz Zarna <sourceDirectory>src/</sourceDirectory> 69a2dac2c7STomasz Zarna <testSourceDirectory>tst/</testSourceDirectory> 70b97a35d7SMatthias Sohn <plugins> 71b97a35d7SMatthias Sohn <plugin> 72b97a35d7SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 73b97a35d7SMatthias Sohn <artifactId>maven-jar-plugin</artifactId> 74b97a35d7SMatthias Sohn <executions> 75b97a35d7SMatthias Sohn <execution> 76b97a35d7SMatthias Sohn <goals> 77b97a35d7SMatthias Sohn <goal>test-jar</goal> 78b97a35d7SMatthias Sohn </goals> 79b97a35d7SMatthias Sohn </execution> 80b97a35d7SMatthias Sohn </executions> 81b97a35d7SMatthias Sohn </plugin> 82b97a35d7SMatthias Sohn <plugin> 83b97a35d7SMatthias Sohn <artifactId>maven-surefire-plugin</artifactId> 84b97a35d7SMatthias Sohn <configuration> 85e19e8599SMatthias Sohn <argLine>@{argLine} -Xmx512m -Djava.io.tmpdir=${project.build.directory}</argLine> 86b97a35d7SMatthias Sohn </configuration> 87b97a35d7SMatthias Sohn </plugin> 88b97a35d7SMatthias Sohn </plugins> 89a2dac2c7STomasz Zarna </build> 90a2dac2c7STomasz Zarna</project> 91