xref: /JGit/org.eclipse.jgit.lfs.server.test/pom.xml (revision 1cbfea9ece03b40669377a7f858218f6994562ea)
13bae524fSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
23bae524fSMatthias Sohn<!--
35c5f7c6bSMatthias Sohn  Copyright (C) 2015 Matthias Sohn <matthias.sohn@sap.com> and others
43bae524fSMatthias Sohn
55c5f7c6bSMatthias Sohn  This program and the accompanying materials are made available under the
65c5f7c6bSMatthias Sohn  terms of the Eclipse Distribution License v. 1.0 which is available at
75c5f7c6bSMatthias Sohn  http://www.eclipse.org/org/documents/edl-v10.php.
83bae524fSMatthias Sohn
95c5f7c6bSMatthias Sohn  SPDX-License-Identifier: BSD-3-Clause
103bae524fSMatthias Sohn-->
113bae524fSMatthias Sohn
123bae524fSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
133bae524fSMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
143bae524fSMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
153bae524fSMatthias Sohn  <modelVersion>4.0.0</modelVersion>
163bae524fSMatthias Sohn
173bae524fSMatthias Sohn  <parent>
183bae524fSMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
193bae524fSMatthias Sohn    <artifactId>org.eclipse.jgit-parent</artifactId>
20*1cbfea9eSMatthias Sohn    <version>5.13.0-SNAPSHOT</version>
213bae524fSMatthias Sohn  </parent>
223bae524fSMatthias Sohn
233bae524fSMatthias Sohn  <artifactId>org.eclipse.jgit.lfs.server.test</artifactId>
243bae524fSMatthias Sohn  <name>JGit - LFS Server Tests</name>
253bae524fSMatthias Sohn
263bae524fSMatthias Sohn  <description>
273bae524fSMatthias Sohn    Tests for the LFS server.
283bae524fSMatthias Sohn  </description>
293bae524fSMatthias Sohn
303bae524fSMatthias Sohn  <dependencies>
313bae524fSMatthias Sohn    <dependency>
323bae524fSMatthias Sohn      <groupId>junit</groupId>
333bae524fSMatthias Sohn      <artifactId>junit</artifactId>
343bae524fSMatthias Sohn      <scope>test</scope>
353bae524fSMatthias Sohn    </dependency>
363bae524fSMatthias Sohn
373bae524fSMatthias Sohn    <dependency>
383bae524fSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
393bae524fSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
403bae524fSMatthias Sohn      <version>${project.version}</version>
413bae524fSMatthias Sohn      <scope>test</scope>
423bae524fSMatthias Sohn    </dependency>
433bae524fSMatthias Sohn
443bae524fSMatthias Sohn    <dependency>
453bae524fSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
463bae524fSMatthias Sohn      <artifactId>org.eclipse.jgit.lfs.server</artifactId>
473bae524fSMatthias Sohn      <version>${project.version}</version>
483bae524fSMatthias Sohn      <scope>test</scope>
493bae524fSMatthias Sohn    </dependency>
503bae524fSMatthias Sohn
513bae524fSMatthias Sohn    <dependency>
523bae524fSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
533bae524fSMatthias Sohn      <artifactId>org.eclipse.jgit.lfs.test</artifactId>
543bae524fSMatthias Sohn      <version>${project.version}</version>
553bae524fSMatthias Sohn      <scope>test</scope>
563bae524fSMatthias Sohn    </dependency>
573bae524fSMatthias Sohn
583bae524fSMatthias Sohn    <dependency>
593bae524fSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
603bae524fSMatthias Sohn      <artifactId>org.eclipse.jgit.junit.http</artifactId>
613bae524fSMatthias Sohn      <version>${project.version}</version>
623bae524fSMatthias Sohn      <scope>test</scope>
633bae524fSMatthias Sohn    </dependency>
643bae524fSMatthias Sohn
653bae524fSMatthias Sohn    <dependency>
663bae524fSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
673bae524fSMatthias Sohn      <artifactId>org.eclipse.jgit.junit</artifactId>
683bae524fSMatthias Sohn      <version>${project.version}</version>
693bae524fSMatthias Sohn      <scope>test</scope>
703bae524fSMatthias Sohn    </dependency>
713bae524fSMatthias Sohn
723bae524fSMatthias Sohn    <dependency>
733bae524fSMatthias Sohn      <groupId>org.eclipse.jetty</groupId>
743bae524fSMatthias Sohn      <artifactId>jetty-servlet</artifactId>
753bae524fSMatthias Sohn      <scope>test</scope>
763bae524fSMatthias Sohn    </dependency>
773bae524fSMatthias Sohn
783bae524fSMatthias Sohn    <dependency>
793bae524fSMatthias Sohn      <groupId>org.apache.httpcomponents</groupId>
803bae524fSMatthias Sohn      <artifactId>httpclient</artifactId>
813bae524fSMatthias Sohn    </dependency>
823bae524fSMatthias Sohn  </dependencies>
833bae524fSMatthias Sohn
843bae524fSMatthias Sohn  <build>
853bae524fSMatthias Sohn    <testSourceDirectory>tst/</testSourceDirectory>
863bae524fSMatthias Sohn
873bae524fSMatthias Sohn    <testResources>
883bae524fSMatthias Sohn      <testResource>
893bae524fSMatthias Sohn        <directory>tst-rsrc/</directory>
903bae524fSMatthias Sohn      </testResource>
913bae524fSMatthias Sohn    </testResources>
923bae524fSMatthias Sohn    <plugins>
933bae524fSMatthias Sohn      <plugin>
943bae524fSMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
953bae524fSMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
963bae524fSMatthias Sohn        <executions>
973bae524fSMatthias Sohn          <execution>
983bae524fSMatthias Sohn            <goals>
993bae524fSMatthias Sohn              <goal>test-jar</goal>
1003bae524fSMatthias Sohn            </goals>
1013bae524fSMatthias Sohn          </execution>
1023bae524fSMatthias Sohn        </executions>
1033bae524fSMatthias Sohn      </plugin>
1043bae524fSMatthias Sohn      <plugin>
1053bae524fSMatthias Sohn        <artifactId>maven-surefire-plugin</artifactId>
1063bae524fSMatthias Sohn        <configuration>
107e19e8599SMatthias Sohn          <argLine>@{argLine} -Djava.io.tmpdir=${project.build.directory}  -Xmx512m</argLine>
1083bae524fSMatthias Sohn        </configuration>
1093bae524fSMatthias Sohn      </plugin>
1103bae524fSMatthias Sohn    </plugins>
1113bae524fSMatthias Sohn  </build>
1123bae524fSMatthias Sohn</project>
113