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.test</artifactId> 24 <name>JGit - Large File Storage Tests</name> 25 26 <description> 27 Tests for the Large File Extension (LFS). 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.lfs</artifactId> 46 <version>${project.version}</version> 47 </dependency> 48 49 <dependency> 50 <groupId>org.eclipse.jgit</groupId> 51 <artifactId>org.eclipse.jgit.junit</artifactId> 52 <version>${project.version}</version> 53 <scope>test</scope> 54 </dependency> 55 </dependencies> 56 57 <build> 58 <testSourceDirectory>tst/</testSourceDirectory> 59 <sourceDirectory>src/</sourceDirectory> 60 61 <testResources> 62 <testResource> 63 <directory>tst-rsrc/</directory> 64 </testResource> 65 </testResources> 66 <plugins> 67 <plugin> 68 <groupId>org.apache.maven.plugins</groupId> 69 <artifactId>maven-jar-plugin</artifactId> 70 <executions> 71 <execution> 72 <goals> 73 <goal>test-jar</goal> 74 </goals> 75 </execution> 76 </executions> 77 </plugin> 78 <plugin> 79 <artifactId>maven-surefire-plugin</artifactId> 80 <configuration> 81 <argLine>@{argLine} -Djava.io.tmpdir=${project.build.directory} -Xmx512m</argLine> 82 </configuration> 83 </plugin> 84 </plugins> 85 </build> 86</project> 87