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