1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com> 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.ant.test</artifactId> 24 <name>JGit - Ant Tasks Tests</name> 25 26 <description> 27 JUnit tests for the various ant tasks. 28 </description> 29 30 <dependencies> 31 <dependency> 32 <groupId>junit</groupId> 33 <artifactId>junit</artifactId> 34 <scope>test</scope> 35 </dependency> 36 37 <dependency> 38 <groupId>org.eclipse.jgit</groupId> 39 <artifactId>org.eclipse.jgit</artifactId> 40 <version>${project.version}</version> 41 </dependency> 42 43 <dependency> 44 <groupId>org.eclipse.jgit</groupId> 45 <artifactId>org.eclipse.jgit.junit</artifactId> 46 <version>${project.version}</version> 47 </dependency> 48 49 <dependency> 50 <groupId>org.eclipse.jgit</groupId> 51 <artifactId>org.eclipse.jgit.ant</artifactId> 52 <version>${project.version}</version> 53 </dependency> 54 55 </dependencies> 56 57 <build> 58 <testSourceDirectory>src/</testSourceDirectory> 59 60 <plugins> 61 <plugin> 62 <groupId>org.apache.maven.plugins</groupId> 63 <artifactId>maven-jar-plugin</artifactId> 64 <executions> 65 <execution> 66 <goals> 67 <goal>test-jar</goal> 68 </goals> 69 </execution> 70 </executions> 71 </plugin> 72 <plugin> 73 <artifactId>maven-surefire-plugin</artifactId> 74 <configuration> 75 <argLine>@{argLine} -Xmx512m -Dfile.encoding=UTF-8 -Djava.io.tmpdir=${project.build.directory}</argLine> 76 </configuration> 77 </plugin> 78 </plugins> 79 </build> 80</project> 81