xref: /JGit/org.eclipse.jgit.lfs.test/pom.xml (revision e19e859977525c2a39aaa928dfdef20e5fab7e3c)
1536db18cSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
2536db18cSMatthias Sohn<!--
3536db18cSMatthias Sohn   Copyright (C) 2015 Matthias Sohn <matthias.sohn@sap.com>
4536db18cSMatthias Sohn   and other copyright owners as documented in the project's IP log.
5536db18cSMatthias Sohn
6536db18cSMatthias Sohn   This program and the accompanying materials are made available
7536db18cSMatthias Sohn   under the terms of the Eclipse Distribution License v1.0 which
8536db18cSMatthias Sohn   accompanies this distribution, is reproduced below, and is
9536db18cSMatthias Sohn   available at http://www.eclipse.org/org/documents/edl-v10.php
10536db18cSMatthias Sohn
11536db18cSMatthias Sohn   All rights reserved.
12536db18cSMatthias Sohn
13536db18cSMatthias Sohn   Redistribution and use in source and binary forms, with or
14536db18cSMatthias Sohn   without modification, are permitted provided that the following
15536db18cSMatthias Sohn   conditions are met:
16536db18cSMatthias Sohn
17536db18cSMatthias Sohn   - Redistributions of source code must retain the above copyright
18536db18cSMatthias Sohn     notice, this list of conditions and the following disclaimer.
19536db18cSMatthias Sohn
20536db18cSMatthias Sohn   - Redistributions in binary form must reproduce the above
21536db18cSMatthias Sohn     copyright notice, this list of conditions and the following
22536db18cSMatthias Sohn     disclaimer in the documentation and/or other materials provided
23536db18cSMatthias Sohn     with the distribution.
24536db18cSMatthias Sohn
25536db18cSMatthias Sohn   - Neither the name of the Eclipse Foundation, Inc. nor the
26536db18cSMatthias Sohn     names of its contributors may be used to endorse or promote
27536db18cSMatthias Sohn     products derived from this software without specific prior
28536db18cSMatthias Sohn     written permission.
29536db18cSMatthias Sohn
30536db18cSMatthias Sohn   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31536db18cSMatthias Sohn   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32536db18cSMatthias Sohn   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33536db18cSMatthias Sohn   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34536db18cSMatthias Sohn   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35536db18cSMatthias Sohn   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36536db18cSMatthias Sohn   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37536db18cSMatthias Sohn   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38536db18cSMatthias Sohn   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39536db18cSMatthias Sohn   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40536db18cSMatthias Sohn   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41536db18cSMatthias Sohn   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42536db18cSMatthias Sohn   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43536db18cSMatthias Sohn-->
44536db18cSMatthias Sohn
45536db18cSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
46536db18cSMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
47536db18cSMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
48536db18cSMatthias Sohn  <modelVersion>4.0.0</modelVersion>
49536db18cSMatthias Sohn
50536db18cSMatthias Sohn  <parent>
51536db18cSMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
52536db18cSMatthias Sohn    <artifactId>org.eclipse.jgit-parent</artifactId>
5390107d53SMatthias Sohn    <version>5.4.0-SNAPSHOT</version>
54536db18cSMatthias Sohn  </parent>
55536db18cSMatthias Sohn
56536db18cSMatthias Sohn  <artifactId>org.eclipse.jgit.lfs.test</artifactId>
57536db18cSMatthias Sohn  <name>JGit - Large File Storage Tests</name>
58536db18cSMatthias Sohn
59536db18cSMatthias Sohn  <description>
60536db18cSMatthias Sohn    Tests for the Large File Extension (LFS).
61536db18cSMatthias Sohn  </description>
62536db18cSMatthias Sohn
63536db18cSMatthias Sohn  <dependencies>
64536db18cSMatthias Sohn    <dependency>
65536db18cSMatthias Sohn      <groupId>junit</groupId>
66536db18cSMatthias Sohn      <artifactId>junit</artifactId>
67536db18cSMatthias Sohn      <scope>test</scope>
68536db18cSMatthias Sohn    </dependency>
69536db18cSMatthias Sohn
70536db18cSMatthias Sohn    <dependency>
71536db18cSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
72536db18cSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
73536db18cSMatthias Sohn      <version>${project.version}</version>
74536db18cSMatthias Sohn    </dependency>
75536db18cSMatthias Sohn
76536db18cSMatthias Sohn    <dependency>
77536db18cSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
78536db18cSMatthias Sohn      <artifactId>org.eclipse.jgit.lfs</artifactId>
79536db18cSMatthias Sohn      <version>${project.version}</version>
80536db18cSMatthias Sohn    </dependency>
81536db18cSMatthias Sohn
82536db18cSMatthias Sohn    <dependency>
83536db18cSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
84536db18cSMatthias Sohn      <artifactId>org.eclipse.jgit.junit</artifactId>
85536db18cSMatthias Sohn      <version>${project.version}</version>
86536db18cSMatthias Sohn      <scope>test</scope>
87536db18cSMatthias Sohn    </dependency>
88536db18cSMatthias Sohn  </dependencies>
89536db18cSMatthias Sohn
90536db18cSMatthias Sohn  <build>
91536db18cSMatthias Sohn    <testSourceDirectory>tst/</testSourceDirectory>
92536db18cSMatthias Sohn    <sourceDirectory>src/</sourceDirectory>
93536db18cSMatthias Sohn
94536db18cSMatthias Sohn    <testResources>
95536db18cSMatthias Sohn      <testResource>
96536db18cSMatthias Sohn        <directory>tst-rsrc/</directory>
97536db18cSMatthias Sohn      </testResource>
98536db18cSMatthias Sohn    </testResources>
99536db18cSMatthias Sohn    <plugins>
100536db18cSMatthias Sohn      <plugin>
101536db18cSMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
102536db18cSMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
103536db18cSMatthias Sohn        <executions>
104536db18cSMatthias Sohn          <execution>
105536db18cSMatthias Sohn            <goals>
106536db18cSMatthias Sohn              <goal>test-jar</goal>
107536db18cSMatthias Sohn            </goals>
108536db18cSMatthias Sohn          </execution>
109536db18cSMatthias Sohn        </executions>
110536db18cSMatthias Sohn      </plugin>
111536db18cSMatthias Sohn      <plugin>
112536db18cSMatthias Sohn        <artifactId>maven-surefire-plugin</artifactId>
113536db18cSMatthias Sohn        <configuration>
114*e19e8599SMatthias Sohn          <argLine>@{argLine} -Djava.io.tmpdir=${project.build.directory}  -Xmx512m</argLine>
115536db18cSMatthias Sohn        </configuration>
116536db18cSMatthias Sohn      </plugin>
117536db18cSMatthias Sohn    </plugins>
118536db18cSMatthias Sohn  </build>
119536db18cSMatthias Sohn</project>
120