1536db18cSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 2536db18cSMatthias Sohn<!-- 35c5f7c6bSMatthias Sohn Copyright (C) 2015, Matthias Sohn <matthias.sohn@sap.com> and others 4536db18cSMatthias 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. 8536db18cSMatthias Sohn 95c5f7c6bSMatthias Sohn SPDX-License-Identifier: BSD-3-Clause 10536db18cSMatthias Sohn--> 11536db18cSMatthias Sohn 12536db18cSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" 13536db18cSMatthias Sohn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 14536db18cSMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 15536db18cSMatthias Sohn <modelVersion>4.0.0</modelVersion> 16536db18cSMatthias Sohn 17536db18cSMatthias Sohn <parent> 18536db18cSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 19536db18cSMatthias Sohn <artifactId>jgit.tycho.parent</artifactId> 20*1cbfea9eSMatthias Sohn <version>5.13.0-SNAPSHOT</version> 21536db18cSMatthias Sohn </parent> 22536db18cSMatthias Sohn 23536db18cSMatthias Sohn <groupId>org.eclipse.jgit.feature</groupId> 24536db18cSMatthias Sohn <artifactId>org.eclipse.jgit.lfs</artifactId> 25536db18cSMatthias Sohn <packaging>eclipse-feature</packaging> 26536db18cSMatthias Sohn 27536db18cSMatthias Sohn <name>JGit - Optional LFS support</name> 28536db18cSMatthias Sohn <dependencies> 29536db18cSMatthias Sohn 30536db18cSMatthias Sohn <dependency> 31536db18cSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 32536db18cSMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 33536db18cSMatthias Sohn <version>${project.version}</version> 34536db18cSMatthias Sohn </dependency> 35536db18cSMatthias Sohn 36536db18cSMatthias Sohn <dependency> 37536db18cSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 38536db18cSMatthias Sohn <artifactId>org.eclipse.jgit.lfs</artifactId> 39536db18cSMatthias Sohn <version>${project.version}</version> 40536db18cSMatthias Sohn </dependency> 41536db18cSMatthias Sohn 423bae524fSMatthias Sohn <dependency> 433bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 443bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.lfs.server</artifactId> 453bae524fSMatthias Sohn <version>${project.version}</version> 463bae524fSMatthias Sohn </dependency> 47536db18cSMatthias Sohn </dependencies> 48536db18cSMatthias Sohn 49536db18cSMatthias Sohn</project> 50