1dad52baaSShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?> 2dad52baaSShawn O. Pearce<!-- 3dad52baaSShawn O. Pearce Copyright (C) 2009, Google Inc. 4dad52baaSShawn O. Pearce Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com> 5dad52baaSShawn O. Pearce Copyright (C) 2008, Jonas Fonseca <fonseca@diku.dk> 6dad52baaSShawn O. Pearce and other copyright owners as documented in the project's IP log. 7dad52baaSShawn O. Pearce 8dad52baaSShawn O. Pearce This program and the accompanying materials are made available 9dad52baaSShawn O. Pearce under the terms of the Eclipse Distribution License v1.0 which 10dad52baaSShawn O. Pearce accompanies this distribution, is reproduced below, and is 11dad52baaSShawn O. Pearce available at http://www.eclipse.org/org/documents/edl-v10.php 12dad52baaSShawn O. Pearce 13dad52baaSShawn O. Pearce All rights reserved. 14dad52baaSShawn O. Pearce 15dad52baaSShawn O. Pearce Redistribution and use in source and binary forms, with or 16dad52baaSShawn O. Pearce without modification, are permitted provided that the following 17dad52baaSShawn O. Pearce conditions are met: 18dad52baaSShawn O. Pearce 19dad52baaSShawn O. Pearce - Redistributions of source code must retain the above copyright 20dad52baaSShawn O. Pearce notice, this list of conditions and the following disclaimer. 21dad52baaSShawn O. Pearce 22dad52baaSShawn O. Pearce - Redistributions in binary form must reproduce the above 23dad52baaSShawn O. Pearce copyright notice, this list of conditions and the following 24dad52baaSShawn O. Pearce disclaimer in the documentation and/or other materials provided 25dad52baaSShawn O. Pearce with the distribution. 26dad52baaSShawn O. Pearce 27dad52baaSShawn O. Pearce - Neither the name of the Eclipse Foundation, Inc. nor the 28dad52baaSShawn O. Pearce names of its contributors may be used to endorse or promote 29dad52baaSShawn O. Pearce products derived from this software without specific prior 30dad52baaSShawn O. Pearce written permission. 31dad52baaSShawn O. Pearce 32dad52baaSShawn O. Pearce THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 33dad52baaSShawn O. Pearce CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 34dad52baaSShawn O. Pearce INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 35dad52baaSShawn O. Pearce OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 36dad52baaSShawn O. Pearce ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 37dad52baaSShawn O. Pearce CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 38dad52baaSShawn O. Pearce SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 39dad52baaSShawn O. Pearce NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 40dad52baaSShawn O. Pearce LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 41dad52baaSShawn O. Pearce CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 42dad52baaSShawn O. Pearce STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 43dad52baaSShawn O. Pearce ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 44dad52baaSShawn O. Pearce ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 45dad52baaSShawn O. Pearce--> 46dad52baaSShawn O. Pearce 47dad52baaSShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0" 48dad52baaSShawn O. Pearce xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 49dad52baaSShawn O. Pearce xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 50dad52baaSShawn O. Pearce <modelVersion>4.0.0</modelVersion> 51dad52baaSShawn O. Pearce 52dad52baaSShawn O. Pearce <parent> 53dad52baaSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 54fc5fc70eSShawn O. Pearce <artifactId>org.eclipse.jgit-parent</artifactId> 552fae326aSMatthias Sohn <version>5.2.0-SNAPSHOT</version> 56dad52baaSShawn O. Pearce </parent> 57dad52baaSShawn O. Pearce 58dad52baaSShawn O. Pearce <artifactId>org.eclipse.jgit.test</artifactId> 59dad52baaSShawn O. Pearce <name>JGit - Core Tests</name> 60dad52baaSShawn O. Pearce 61dad52baaSShawn O. Pearce <description> 62dad52baaSShawn O. Pearce JUnit tests for the core library. 63dad52baaSShawn O. Pearce </description> 64dad52baaSShawn O. Pearce 6512c4d77cSMatthias Sohn <properties> 6612c4d77cSMatthias Sohn <maven.javadoc.skip>true</maven.javadoc.skip> 6712c4d77cSMatthias Sohn </properties> 6812c4d77cSMatthias Sohn 69dad52baaSShawn O. Pearce <dependencies> 70dad52baaSShawn O. Pearce <dependency> 71fc5fc70eSShawn O. Pearce <groupId>junit</groupId> 72fc5fc70eSShawn O. Pearce <artifactId>junit</artifactId> 73fc5fc70eSShawn O. Pearce </dependency> 74fc5fc70eSShawn O. Pearce 7581810affSAndrei Pozolotin <!-- Optional security provider for encryption tests. --> 7681810affSAndrei Pozolotin <!-- See https://dev.eclipse.org/ipzilla/show_bug.cgi?id=9554 --> 7781810affSAndrei Pozolotin <!-- See https://bugs.eclipse.org/bugs/show_bug.cgi?id=467064 --> 7881810affSAndrei Pozolotin <dependency> 7981810affSAndrei Pozolotin <groupId>org.bouncycastle</groupId> 8081810affSAndrei Pozolotin <artifactId>bcprov-jdk15on</artifactId> 8181810affSAndrei Pozolotin <version>1.52</version> 8281810affSAndrei Pozolotin <scope>test</scope> 8381810affSAndrei Pozolotin </dependency> 8481810affSAndrei Pozolotin 85fc5fc70eSShawn O. Pearce <dependency> 8642d7565bSRobin Rosenberg <groupId>org.hamcrest</groupId> 8742d7565bSRobin Rosenberg <artifactId>hamcrest-library</artifactId> 8842d7565bSRobin Rosenberg <scope>test</scope> 8942d7565bSRobin Rosenberg <version>[1.1.0,2.0.0)</version> 9042d7565bSRobin Rosenberg </dependency> 9142d7565bSRobin Rosenberg 9242d7565bSRobin Rosenberg <dependency> 93dad52baaSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 94dad52baaSShawn O. Pearce <artifactId>org.eclipse.jgit</artifactId> 95fc5fc70eSShawn O. Pearce <version>${project.version}</version> 96dad52baaSShawn O. Pearce </dependency> 971e84e8adSShawn O. Pearce 981e84e8adSShawn O. Pearce <dependency> 991e84e8adSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 1001e84e8adSShawn O. Pearce <artifactId>org.eclipse.jgit.junit</artifactId> 101fc5fc70eSShawn O. Pearce <version>${project.version}</version> 1021e84e8adSShawn O. Pearce </dependency> 1033c667b32SSasa Zivkov 1043c667b32SSasa Zivkov <dependency> 1053c667b32SSasa Zivkov <groupId>org.eclipse.jgit</groupId> 106*1316d43eSThomas Wolf <artifactId>org.eclipse.jgit.junit.ssh</artifactId> 107*1316d43eSThomas Wolf <version>${project.version}</version> 108*1316d43eSThomas Wolf </dependency> 109*1316d43eSThomas Wolf 110*1316d43eSThomas Wolf <dependency> 111*1316d43eSThomas Wolf <groupId>org.eclipse.jgit</groupId> 1123c667b32SSasa Zivkov <artifactId>org.eclipse.jgit.ui</artifactId> 1133c667b32SSasa Zivkov <version>${project.version}</version> 1143c667b32SSasa Zivkov </dependency> 1153c667b32SSasa Zivkov 1163c667b32SSasa Zivkov <dependency> 1173c667b32SSasa Zivkov <groupId>org.eclipse.jgit</groupId> 1183c667b32SSasa Zivkov <artifactId>org.eclipse.jgit.pgm</artifactId> 1193c667b32SSasa Zivkov <version>${project.version}</version> 1203c667b32SSasa Zivkov </dependency> 121dad52baaSShawn O. Pearce </dependencies> 122dad52baaSShawn O. Pearce 12381810affSAndrei Pozolotin <profiles> 12481810affSAndrei Pozolotin <!-- Profile provides a property which enables long running tests. --> 12581810affSAndrei Pozolotin <profile> 12681810affSAndrei Pozolotin <id>test.long</id> 12781810affSAndrei Pozolotin <build> 12881810affSAndrei Pozolotin <plugins> 12981810affSAndrei Pozolotin <plugin> 13081810affSAndrei Pozolotin <groupId>org.apache.maven.plugins</groupId> 13181810affSAndrei Pozolotin <artifactId>maven-surefire-plugin</artifactId> 13281810affSAndrei Pozolotin <configuration> 13381810affSAndrei Pozolotin <argLine>-Djgit.test.long=true</argLine> 13481810affSAndrei Pozolotin </configuration> 13581810affSAndrei Pozolotin </plugin> 13681810affSAndrei Pozolotin </plugins> 13781810affSAndrei Pozolotin </build> 13881810affSAndrei Pozolotin </profile> 13981810affSAndrei Pozolotin </profiles> 14081810affSAndrei Pozolotin 141dad52baaSShawn O. Pearce <build> 142adbcbc79SJonathan Nieder <sourceDirectory>src/</sourceDirectory> 143dad52baaSShawn O. Pearce <testSourceDirectory>tst/</testSourceDirectory> 144dad52baaSShawn O. Pearce 145dad52baaSShawn O. Pearce <testResources> 146dad52baaSShawn O. Pearce <testResource> 147dad52baaSShawn O. Pearce <directory>tst-rsrc/</directory> 148dad52baaSShawn O. Pearce </testResource> 149dad52baaSShawn O. Pearce </testResources> 150dad52baaSShawn O. Pearce 151488d9557SThomas Wolf <resources> 152488d9557SThomas Wolf <resource> 153488d9557SThomas Wolf <directory>.</directory> 154488d9557SThomas Wolf <includes> 155488d9557SThomas Wolf <include>plugin.properties</include> 156488d9557SThomas Wolf </includes> 157488d9557SThomas Wolf </resource> 158488d9557SThomas Wolf <resource> 159488d9557SThomas Wolf <directory>resources/</directory> 160488d9557SThomas Wolf </resource> 161488d9557SThomas Wolf </resources> 162488d9557SThomas Wolf 163dad52baaSShawn O. Pearce <plugins> 164dad52baaSShawn O. Pearce <plugin> 165b97a35d7SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 166b97a35d7SMatthias Sohn <artifactId>maven-jar-plugin</artifactId> 167b97a35d7SMatthias Sohn <executions> 168b97a35d7SMatthias Sohn <execution> 169b97a35d7SMatthias Sohn <goals> 170b97a35d7SMatthias Sohn <goal>test-jar</goal> 171b97a35d7SMatthias Sohn </goals> 172b97a35d7SMatthias Sohn </execution> 173b97a35d7SMatthias Sohn </executions> 174b97a35d7SMatthias Sohn </plugin> 175b97a35d7SMatthias Sohn <plugin> 176dad52baaSShawn O. Pearce <artifactId>maven-surefire-plugin</artifactId> 177dad52baaSShawn O. Pearce <configuration> 178621880bcSThomas Wolf <argLine>-Xmx1024m -Dfile.encoding=UTF-8 -Djava.io.tmpdir=${project.build.directory}</argLine> 1795e5fbb60SDavid Pursehouse <includes> 1805e5fbb60SDavid Pursehouse <include>**/*Test.java</include> 1815e5fbb60SDavid Pursehouse <include>**/*Tests.java</include> 1825e5fbb60SDavid Pursehouse </includes> 183dad52baaSShawn O. Pearce </configuration> 184dad52baaSShawn O. Pearce </plugin> 185dad52baaSShawn O. Pearce </plugins> 186dad52baaSShawn O. Pearce </build> 187dad52baaSShawn O. Pearce</project> 188