1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (C) 2010-2012, 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.junit</artifactId> 25 <packaging>eclipse-feature</packaging> 26 27 <name>JGit JUnit Feature</name> 28 29 <dependencies> 30 <dependency> 31 <groupId>org.eclipse.jgit</groupId> 32 <artifactId>org.eclipse.jgit.junit</artifactId> 33 <version>${project.version}</version> 34 </dependency> 35 <dependency> 36 <groupId>org.eclipse.jgit</groupId> 37 <artifactId>org.eclipse.jgit.junit.http</artifactId> 38 <version>${project.version}</version> 39 </dependency> 40 <dependency> 41 <groupId>org.eclipse.jgit</groupId> 42 <artifactId>org.eclipse.jgit.junit.ssh</artifactId> 43 <version>${project.version}</version> 44 </dependency> 45 <dependency> 46 <groupId>org.eclipse.jgit</groupId> 47 <artifactId>org.eclipse.jgit.http.server</artifactId> 48 <version>${project.version}</version> 49 </dependency> 50 </dependencies> 51 52</project> 53