xref: /JGit/org.eclipse.jgit.lfs.test/pom.xml (revision 5c5f7c6b146b24f2bd4afae1902df85ad6e57ea3)
1536db18cSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
2536db18cSMatthias Sohn<!--
3*5c5f7c6bSMatthias Sohn  Copyright (C) 2015 Matthias Sohn <matthias.sohn@sap.com> and others
4536db18cSMatthias Sohn
5*5c5f7c6bSMatthias Sohn  This program and the accompanying materials are made available under the
6*5c5f7c6bSMatthias Sohn  terms of the Eclipse Distribution License v. 1.0 which is available at
7*5c5f7c6bSMatthias Sohn  http://www.eclipse.org/org/documents/edl-v10.php.
8536db18cSMatthias Sohn
9*5c5f7c6bSMatthias Sohn  SPDX-License-Identifier: BSD-3-Clause
10536db18cSMatthias Sohn-->
11536db18cSMatthias Sohn
12536db18cSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
13536db18cSMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14536db18cSMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15536db18cSMatthias Sohn  <modelVersion>4.0.0</modelVersion>
16536db18cSMatthias Sohn
17536db18cSMatthias Sohn  <parent>
18536db18cSMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
19536db18cSMatthias Sohn    <artifactId>org.eclipse.jgit-parent</artifactId>
20f487a9ebSMatthias Sohn    <version>5.7.0-SNAPSHOT</version>
21536db18cSMatthias Sohn  </parent>
22536db18cSMatthias Sohn
23536db18cSMatthias Sohn  <artifactId>org.eclipse.jgit.lfs.test</artifactId>
24536db18cSMatthias Sohn  <name>JGit - Large File Storage Tests</name>
25536db18cSMatthias Sohn
26536db18cSMatthias Sohn  <description>
27536db18cSMatthias Sohn    Tests for the Large File Extension (LFS).
28536db18cSMatthias Sohn  </description>
29536db18cSMatthias Sohn
30536db18cSMatthias Sohn  <dependencies>
31536db18cSMatthias Sohn    <dependency>
32536db18cSMatthias Sohn      <groupId>junit</groupId>
33536db18cSMatthias Sohn      <artifactId>junit</artifactId>
34536db18cSMatthias Sohn      <scope>test</scope>
35536db18cSMatthias Sohn    </dependency>
36536db18cSMatthias Sohn
37536db18cSMatthias Sohn    <dependency>
38536db18cSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
39536db18cSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
40536db18cSMatthias Sohn      <version>${project.version}</version>
41536db18cSMatthias Sohn    </dependency>
42536db18cSMatthias Sohn
43536db18cSMatthias Sohn    <dependency>
44536db18cSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
45536db18cSMatthias Sohn      <artifactId>org.eclipse.jgit.lfs</artifactId>
46536db18cSMatthias Sohn      <version>${project.version}</version>
47536db18cSMatthias Sohn    </dependency>
48536db18cSMatthias Sohn
49536db18cSMatthias Sohn    <dependency>
50536db18cSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
51536db18cSMatthias Sohn      <artifactId>org.eclipse.jgit.junit</artifactId>
52536db18cSMatthias Sohn      <version>${project.version}</version>
53536db18cSMatthias Sohn      <scope>test</scope>
54536db18cSMatthias Sohn    </dependency>
55536db18cSMatthias Sohn  </dependencies>
56536db18cSMatthias Sohn
57536db18cSMatthias Sohn  <build>
58536db18cSMatthias Sohn    <testSourceDirectory>tst/</testSourceDirectory>
59536db18cSMatthias Sohn    <sourceDirectory>src/</sourceDirectory>
60536db18cSMatthias Sohn
61536db18cSMatthias Sohn    <testResources>
62536db18cSMatthias Sohn      <testResource>
63536db18cSMatthias Sohn        <directory>tst-rsrc/</directory>
64536db18cSMatthias Sohn      </testResource>
65536db18cSMatthias Sohn    </testResources>
66536db18cSMatthias Sohn    <plugins>
67536db18cSMatthias Sohn      <plugin>
68536db18cSMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
69536db18cSMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
70536db18cSMatthias Sohn        <executions>
71536db18cSMatthias Sohn          <execution>
72536db18cSMatthias Sohn            <goals>
73536db18cSMatthias Sohn              <goal>test-jar</goal>
74536db18cSMatthias Sohn            </goals>
75536db18cSMatthias Sohn          </execution>
76536db18cSMatthias Sohn        </executions>
77536db18cSMatthias Sohn      </plugin>
78536db18cSMatthias Sohn      <plugin>
79536db18cSMatthias Sohn        <artifactId>maven-surefire-plugin</artifactId>
80536db18cSMatthias Sohn        <configuration>
81e19e8599SMatthias Sohn          <argLine>@{argLine} -Djava.io.tmpdir=${project.build.directory}  -Xmx512m</argLine>
82536db18cSMatthias Sohn        </configuration>
83536db18cSMatthias Sohn      </plugin>
84536db18cSMatthias Sohn    </plugins>
85536db18cSMatthias Sohn  </build>
86536db18cSMatthias Sohn</project>
87