1844bd748SChris Aniszczyk<?xml version="1.0" encoding="UTF-8"?> 2844bd748SChris Aniszczyk<!-- 3844bd748SChris Aniszczyk Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com> 4844bd748SChris Aniszczyk and other copyright owners as documented in the project's IP log. 5844bd748SChris Aniszczyk 6844bd748SChris Aniszczyk This program and the accompanying materials are made available 7844bd748SChris Aniszczyk under the terms of the Eclipse Distribution License v1.0 which 8844bd748SChris Aniszczyk accompanies this distribution, is reproduced below, and is 9844bd748SChris Aniszczyk available at http://www.eclipse.org/org/documents/edl-v10.php 10844bd748SChris Aniszczyk 11844bd748SChris Aniszczyk All rights reserved. 12844bd748SChris Aniszczyk 13844bd748SChris Aniszczyk Redistribution and use in source and binary forms, with or 14844bd748SChris Aniszczyk without modification, are permitted provided that the following 15844bd748SChris Aniszczyk conditions are met: 16844bd748SChris Aniszczyk 17844bd748SChris Aniszczyk - Redistributions of source code must retain the above copyright 18844bd748SChris Aniszczyk notice, this list of conditions and the following disclaimer. 19844bd748SChris Aniszczyk 20844bd748SChris Aniszczyk - Redistributions in binary form must reproduce the above 21844bd748SChris Aniszczyk copyright notice, this list of conditions and the following 22844bd748SChris Aniszczyk disclaimer in the documentation and/or other materials provided 23844bd748SChris Aniszczyk with the distribution. 24844bd748SChris Aniszczyk 25844bd748SChris Aniszczyk - Neither the name of the Eclipse Foundation, Inc. nor the 26844bd748SChris Aniszczyk names of its contributors may be used to endorse or promote 27844bd748SChris Aniszczyk products derived from this software without specific prior 28844bd748SChris Aniszczyk written permission. 29844bd748SChris Aniszczyk 30844bd748SChris Aniszczyk THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 31844bd748SChris Aniszczyk CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 32844bd748SChris Aniszczyk INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 33844bd748SChris Aniszczyk OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 34844bd748SChris Aniszczyk ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 35844bd748SChris Aniszczyk CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 36844bd748SChris Aniszczyk SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 37844bd748SChris Aniszczyk NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 38844bd748SChris Aniszczyk LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 39844bd748SChris Aniszczyk CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 40844bd748SChris Aniszczyk STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 41844bd748SChris Aniszczyk ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 42844bd748SChris Aniszczyk ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 43844bd748SChris Aniszczyk--> 44844bd748SChris Aniszczyk 45844bd748SChris Aniszczyk<project xmlns="http://maven.apache.org/POM/4.0.0" 46844bd748SChris Aniszczyk xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 47844bd748SChris Aniszczyk xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 48844bd748SChris Aniszczyk <modelVersion>4.0.0</modelVersion> 49844bd748SChris Aniszczyk 50844bd748SChris Aniszczyk <parent> 51844bd748SChris Aniszczyk <groupId>org.eclipse.jgit</groupId> 52844bd748SChris Aniszczyk <artifactId>org.eclipse.jgit-parent</artifactId> 53fdd1ac93SMatthias Sohn <version>3.0.2-SNAPSHOT</version> 54844bd748SChris Aniszczyk </parent> 55844bd748SChris Aniszczyk 56844bd748SChris Aniszczyk <artifactId>org.eclipse.jgit.ant.test</artifactId> 57844bd748SChris Aniszczyk <name>JGit - Ant Tasks Tests</name> 58844bd748SChris Aniszczyk 59844bd748SChris Aniszczyk <description> 60844bd748SChris Aniszczyk JUnit tests for the various ant tasks. 61844bd748SChris Aniszczyk </description> 62844bd748SChris Aniszczyk 63844bd748SChris Aniszczyk <dependencies> 64844bd748SChris Aniszczyk <dependency> 65844bd748SChris Aniszczyk <groupId>junit</groupId> 66844bd748SChris Aniszczyk <artifactId>junit</artifactId> 67844bd748SChris Aniszczyk <scope>test</scope> 68844bd748SChris Aniszczyk </dependency> 69844bd748SChris Aniszczyk 70844bd748SChris Aniszczyk <dependency> 71844bd748SChris Aniszczyk <groupId>org.eclipse.jgit</groupId> 72844bd748SChris Aniszczyk <artifactId>org.eclipse.jgit</artifactId> 73844bd748SChris Aniszczyk <version>${project.version}</version> 74844bd748SChris Aniszczyk </dependency> 75844bd748SChris Aniszczyk 76844bd748SChris Aniszczyk <dependency> 77844bd748SChris Aniszczyk <groupId>org.eclipse.jgit</groupId> 78844bd748SChris Aniszczyk <artifactId>org.eclipse.jgit.junit</artifactId> 79844bd748SChris Aniszczyk <version>${project.version}</version> 80844bd748SChris Aniszczyk </dependency> 81844bd748SChris Aniszczyk 82844bd748SChris Aniszczyk <dependency> 83844bd748SChris Aniszczyk <groupId>org.eclipse.jgit</groupId> 84844bd748SChris Aniszczyk <artifactId>org.eclipse.jgit.ant</artifactId> 85844bd748SChris Aniszczyk <version>${project.version}</version> 86844bd748SChris Aniszczyk </dependency> 87844bd748SChris Aniszczyk 88844bd748SChris Aniszczyk </dependencies> 89844bd748SChris Aniszczyk 90844bd748SChris Aniszczyk <build> 91844bd748SChris Aniszczyk <testSourceDirectory>src/</testSourceDirectory> 92844bd748SChris Aniszczyk 93844bd748SChris Aniszczyk <plugins> 94844bd748SChris Aniszczyk <plugin> 95*b97a35d7SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 96*b97a35d7SMatthias Sohn <artifactId>maven-jar-plugin</artifactId> 97*b97a35d7SMatthias Sohn <executions> 98*b97a35d7SMatthias Sohn <execution> 99*b97a35d7SMatthias Sohn <goals> 100*b97a35d7SMatthias Sohn <goal>test-jar</goal> 101*b97a35d7SMatthias Sohn </goals> 102*b97a35d7SMatthias Sohn </execution> 103*b97a35d7SMatthias Sohn </executions> 104*b97a35d7SMatthias Sohn </plugin> 105*b97a35d7SMatthias Sohn <plugin> 106844bd748SChris Aniszczyk <artifactId>maven-surefire-plugin</artifactId> 107844bd748SChris Aniszczyk <configuration> 108844bd748SChris Aniszczyk <argLine>-Xmx256m -Dfile.encoding=UTF-8</argLine> 109844bd748SChris Aniszczyk </configuration> 110844bd748SChris Aniszczyk </plugin> 111844bd748SChris Aniszczyk </plugins> 112844bd748SChris Aniszczyk </build> 113844bd748SChris Aniszczyk</project> 114