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