blob: 19905b62550a18153b7398c5d4873f8705a66518 [file] [log] [blame]
Matthias Sohn8d2d6832020-04-24 22:41:39 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (C) 2020, Matthias Sohn <matthias.sohn@sap.com> and others
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Distribution License v. 1.0 which is available at
7 http://www.eclipse.org/org/documents/edl-v10.php.
8
9 SPDX-License-Identifier: BSD-3-Clause
10-->
11
12<project xmlns="http://maven.apache.org/POM/4.0.0"
13 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15 <modelVersion>4.0.0</modelVersion>
16
17 <parent>
18 <groupId>org.eclipse.jgit</groupId>
19 <artifactId>jgit.tycho.parent</artifactId>
20 <version>5.8.0-SNAPSHOT</version>
21 </parent>
22
23 <groupId>org.eclipse.jgit.feature</groupId>
24 <artifactId>org.eclipse.jgit.ssh.jsch</artifactId>
25 <packaging>eclipse-feature</packaging>
26
27 <name>JGit - Ssh support using JCraft jsch</name>
28 <dependencies>
29
30 <dependency>
31 <groupId>org.eclipse.jgit</groupId>
32 <artifactId>org.eclipse.jgit</artifactId>
33 <version>${project.version}</version>
34 </dependency>
35
36 <dependency>
37 <groupId>org.eclipse.jgit</groupId>
38 <artifactId>org.eclipse.jgit.ssh.jsch</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41
42 </dependencies>
43
44</project>