1*3bae524fSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 2*3bae524fSMatthias Sohn<!-- 3*3bae524fSMatthias Sohn Copyright (C) 2015 Matthias Sohn <matthias.sohn@sap.com> 4*3bae524fSMatthias Sohn and other copyright owners as documented in the project's IP log. 5*3bae524fSMatthias Sohn 6*3bae524fSMatthias Sohn This program and the accompanying materials are made available 7*3bae524fSMatthias Sohn under the terms of the Eclipse Distribution License v1.0 which 8*3bae524fSMatthias Sohn accompanies this distribution, is reproduced below, and is 9*3bae524fSMatthias Sohn available at http://www.eclipse.org/org/documents/edl-v10.php 10*3bae524fSMatthias Sohn 11*3bae524fSMatthias Sohn All rights reserved. 12*3bae524fSMatthias Sohn 13*3bae524fSMatthias Sohn Redistribution and use in source and binary forms, with or 14*3bae524fSMatthias Sohn without modification, are permitted provided that the following 15*3bae524fSMatthias Sohn conditions are met: 16*3bae524fSMatthias Sohn 17*3bae524fSMatthias Sohn - Redistributions of source code must retain the above copyright 18*3bae524fSMatthias Sohn notice, this list of conditions and the following disclaimer. 19*3bae524fSMatthias Sohn 20*3bae524fSMatthias Sohn - Redistributions in binary form must reproduce the above 21*3bae524fSMatthias Sohn copyright notice, this list of conditions and the following 22*3bae524fSMatthias Sohn disclaimer in the documentation and/or other materials provided 23*3bae524fSMatthias Sohn with the distribution. 24*3bae524fSMatthias Sohn 25*3bae524fSMatthias Sohn - Neither the name of the Eclipse Foundation, Inc. nor the 26*3bae524fSMatthias Sohn names of its contributors may be used to endorse or promote 27*3bae524fSMatthias Sohn products derived from this software without specific prior 28*3bae524fSMatthias Sohn written permission. 29*3bae524fSMatthias Sohn 30*3bae524fSMatthias Sohn THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 31*3bae524fSMatthias Sohn CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 32*3bae524fSMatthias Sohn INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 33*3bae524fSMatthias Sohn OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 34*3bae524fSMatthias Sohn ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 35*3bae524fSMatthias Sohn CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 36*3bae524fSMatthias Sohn SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 37*3bae524fSMatthias Sohn NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 38*3bae524fSMatthias Sohn LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 39*3bae524fSMatthias Sohn CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 40*3bae524fSMatthias Sohn STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 41*3bae524fSMatthias Sohn ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 42*3bae524fSMatthias Sohn ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 43*3bae524fSMatthias Sohn--> 44*3bae524fSMatthias Sohn 45*3bae524fSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" 46*3bae524fSMatthias Sohn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 47*3bae524fSMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 48*3bae524fSMatthias Sohn <modelVersion>4.0.0</modelVersion> 49*3bae524fSMatthias Sohn 50*3bae524fSMatthias Sohn <parent> 51*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 52*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit-parent</artifactId> 53*3bae524fSMatthias Sohn <version>4.3.0-SNAPSHOT</version> 54*3bae524fSMatthias Sohn </parent> 55*3bae524fSMatthias Sohn 56*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.lfs.server.test</artifactId> 57*3bae524fSMatthias Sohn <name>JGit - LFS Server Tests</name> 58*3bae524fSMatthias Sohn 59*3bae524fSMatthias Sohn <description> 60*3bae524fSMatthias Sohn Tests for the LFS server. 61*3bae524fSMatthias Sohn </description> 62*3bae524fSMatthias Sohn 63*3bae524fSMatthias Sohn <dependencies> 64*3bae524fSMatthias Sohn <dependency> 65*3bae524fSMatthias Sohn <groupId>junit</groupId> 66*3bae524fSMatthias Sohn <artifactId>junit</artifactId> 67*3bae524fSMatthias Sohn <scope>test</scope> 68*3bae524fSMatthias Sohn </dependency> 69*3bae524fSMatthias Sohn 70*3bae524fSMatthias Sohn <dependency> 71*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 72*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 73*3bae524fSMatthias Sohn <version>${project.version}</version> 74*3bae524fSMatthias Sohn <scope>test</scope> 75*3bae524fSMatthias Sohn </dependency> 76*3bae524fSMatthias Sohn 77*3bae524fSMatthias Sohn <dependency> 78*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 79*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.lfs.server</artifactId> 80*3bae524fSMatthias Sohn <version>${project.version}</version> 81*3bae524fSMatthias Sohn <scope>test</scope> 82*3bae524fSMatthias Sohn </dependency> 83*3bae524fSMatthias Sohn 84*3bae524fSMatthias Sohn <dependency> 85*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 86*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.lfs.test</artifactId> 87*3bae524fSMatthias Sohn <version>${project.version}</version> 88*3bae524fSMatthias Sohn <scope>test</scope> 89*3bae524fSMatthias Sohn </dependency> 90*3bae524fSMatthias Sohn 91*3bae524fSMatthias Sohn <dependency> 92*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 93*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.junit.http</artifactId> 94*3bae524fSMatthias Sohn <version>${project.version}</version> 95*3bae524fSMatthias Sohn <scope>test</scope> 96*3bae524fSMatthias Sohn </dependency> 97*3bae524fSMatthias Sohn 98*3bae524fSMatthias Sohn <dependency> 99*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 100*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.junit</artifactId> 101*3bae524fSMatthias Sohn <version>${project.version}</version> 102*3bae524fSMatthias Sohn <scope>test</scope> 103*3bae524fSMatthias Sohn </dependency> 104*3bae524fSMatthias Sohn 105*3bae524fSMatthias Sohn <dependency> 106*3bae524fSMatthias Sohn <groupId>org.eclipse.jetty</groupId> 107*3bae524fSMatthias Sohn <artifactId>jetty-servlet</artifactId> 108*3bae524fSMatthias Sohn <scope>test</scope> 109*3bae524fSMatthias Sohn </dependency> 110*3bae524fSMatthias Sohn 111*3bae524fSMatthias Sohn <dependency> 112*3bae524fSMatthias Sohn <groupId>org.apache.httpcomponents</groupId> 113*3bae524fSMatthias Sohn <artifactId>httpclient</artifactId> 114*3bae524fSMatthias Sohn <version>4.3.6</version> 115*3bae524fSMatthias Sohn </dependency> 116*3bae524fSMatthias Sohn </dependencies> 117*3bae524fSMatthias Sohn 118*3bae524fSMatthias Sohn <build> 119*3bae524fSMatthias Sohn <testSourceDirectory>tst/</testSourceDirectory> 120*3bae524fSMatthias Sohn 121*3bae524fSMatthias Sohn <testResources> 122*3bae524fSMatthias Sohn <testResource> 123*3bae524fSMatthias Sohn <directory>tst-rsrc/</directory> 124*3bae524fSMatthias Sohn </testResource> 125*3bae524fSMatthias Sohn </testResources> 126*3bae524fSMatthias Sohn <plugins> 127*3bae524fSMatthias Sohn <plugin> 128*3bae524fSMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 129*3bae524fSMatthias Sohn <artifactId>maven-jar-plugin</artifactId> 130*3bae524fSMatthias Sohn <executions> 131*3bae524fSMatthias Sohn <execution> 132*3bae524fSMatthias Sohn <goals> 133*3bae524fSMatthias Sohn <goal>test-jar</goal> 134*3bae524fSMatthias Sohn </goals> 135*3bae524fSMatthias Sohn </execution> 136*3bae524fSMatthias Sohn </executions> 137*3bae524fSMatthias Sohn </plugin> 138*3bae524fSMatthias Sohn <plugin> 139*3bae524fSMatthias Sohn <artifactId>maven-surefire-plugin</artifactId> 140*3bae524fSMatthias Sohn <configuration> 141*3bae524fSMatthias Sohn <argLine>-Djava.io.tmpdir=${project.build.directory} -Xmx300m</argLine> 142*3bae524fSMatthias Sohn </configuration> 143*3bae524fSMatthias Sohn </plugin> 144*3bae524fSMatthias Sohn </plugins> 145*3bae524fSMatthias Sohn </build> 146*3bae524fSMatthias Sohn</project> 147