18d2d6836SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 28d2d6836SMatthias Sohn<!-- 38d2d6836SMatthias Sohn Copyright (C) 2020, Matthias Sohn <matthias.sohn@sap.com> and others 48d2d6836SMatthias Sohn 58d2d6836SMatthias Sohn This program and the accompanying materials are made available under the 68d2d6836SMatthias Sohn terms of the Eclipse Distribution License v. 1.0 which is available at 78d2d6836SMatthias Sohn http://www.eclipse.org/org/documents/edl-v10.php. 88d2d6836SMatthias Sohn 98d2d6836SMatthias Sohn SPDX-License-Identifier: BSD-3-Clause 108d2d6836SMatthias Sohn--> 118d2d6836SMatthias Sohn 128d2d6836SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" 138d2d6836SMatthias Sohn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 148d2d6836SMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 158d2d6836SMatthias Sohn <modelVersion>4.0.0</modelVersion> 168d2d6836SMatthias Sohn 178d2d6836SMatthias Sohn <parent> 188d2d6836SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 198d2d6836SMatthias Sohn <artifactId>jgit.tycho.parent</artifactId> 20*1cbfea9eSMatthias Sohn <version>5.13.0-SNAPSHOT</version> 218d2d6836SMatthias Sohn </parent> 228d2d6836SMatthias Sohn 238d2d6836SMatthias Sohn <groupId>org.eclipse.jgit.feature</groupId> 248d2d6836SMatthias Sohn <artifactId>org.eclipse.jgit.ssh.jsch</artifactId> 258d2d6836SMatthias Sohn <packaging>eclipse-feature</packaging> 268d2d6836SMatthias Sohn 278d2d6836SMatthias Sohn <name>JGit - Ssh support using JCraft jsch</name> 288d2d6836SMatthias Sohn <dependencies> 298d2d6836SMatthias Sohn 308d2d6836SMatthias Sohn <dependency> 318d2d6836SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 328d2d6836SMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 338d2d6836SMatthias Sohn <version>${project.version}</version> 348d2d6836SMatthias Sohn </dependency> 358d2d6836SMatthias Sohn 368d2d6836SMatthias Sohn <dependency> 378d2d6836SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 388d2d6836SMatthias Sohn <artifactId>org.eclipse.jgit.ssh.jsch</artifactId> 398d2d6836SMatthias Sohn <version>${project.version}</version> 408d2d6836SMatthias Sohn </dependency> 418d2d6836SMatthias Sohn 428d2d6836SMatthias Sohn </dependencies> 438d2d6836SMatthias Sohn 448d2d6836SMatthias Sohn</project> 45