1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (C) 2015 Matthias Sohn <matthias.sohn@sap.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.lfs.server.test</artifactId> 24 <name>JGit - LFS Server Tests</name> 25 26 <description> 27 Tests for the LFS server. 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 <scope>test</scope> 42 </dependency> 43 44 <dependency> 45 <groupId>org.eclipse.jgit</groupId> 46 <artifactId>org.eclipse.jgit.lfs.server</artifactId> 47 <version>${project.version}</version> 48 <scope>test</scope> 49 </dependency> 50 51 <dependency> 52 <groupId>org.eclipse.jgit</groupId> 53 <artifactId>org.eclipse.jgit.lfs.test</artifactId> 54 <version>${project.version}</version> 55 <scope>test</scope> 56 </dependency> 57 58 <dependency> 59 <groupId>org.eclipse.jgit</groupId> 60 <artifactId>org.eclipse.jgit.junit.http</artifactId> 61 <version>${project.version}</version> 62 <scope>test</scope> 63 </dependency> 64 65 <dependency> 66 <groupId>org.eclipse.jgit</groupId> 67 <artifactId>org.eclipse.jgit.junit</artifactId> 68 <version>${project.version}</version> 69 <scope>test</scope> 70 </dependency> 71 72 <dependency> 73 <groupId>org.eclipse.jetty</groupId> 74 <artifactId>jetty-servlet</artifactId> 75 <scope>test</scope> 76 </dependency> 77 78 <dependency> 79 <groupId>org.apache.httpcomponents</groupId> 80 <artifactId>httpclient</artifactId> 81 </dependency> 82 </dependencies> 83 84 <build> 85 <testSourceDirectory>tst/</testSourceDirectory> 86 87 <testResources> 88 <testResource> 89 <directory>tst-rsrc/</directory> 90 </testResource> 91 </testResources> 92 <plugins> 93 <plugin> 94 <groupId>org.apache.maven.plugins</groupId> 95 <artifactId>maven-jar-plugin</artifactId> 96 <executions> 97 <execution> 98 <goals> 99 <goal>test-jar</goal> 100 </goals> 101 </execution> 102 </executions> 103 </plugin> 104 <plugin> 105 <artifactId>maven-surefire-plugin</artifactId> 106 <configuration> 107 <argLine>@{argLine} -Djava.io.tmpdir=${project.build.directory} -Xmx512m</argLine> 108 </configuration> 109 </plugin> 110 </plugins> 111 </build> 112</project> 113