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