1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (C) 2015, 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.13.0-SNAPSHOT</version> 21 </parent> 22 23 <groupId>org.eclipse.jgit.feature</groupId> 24 <artifactId>org.eclipse.jgit.lfs</artifactId> 25 <packaging>eclipse-feature</packaging> 26 27 <name>JGit - Optional LFS support</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.lfs</artifactId> 39 <version>${project.version}</version> 40 </dependency> 41 42 <dependency> 43 <groupId>org.eclipse.jgit</groupId> 44 <artifactId>org.eclipse.jgit.lfs.server</artifactId> 45 <version>${project.version}</version> 46 </dependency> 47 </dependencies> 48 49</project> 50