xref: /JGit/org.eclipse.jgit.packaging/org.eclipse.jgit.junit.feature/pom.xml (revision 1cbfea9ece03b40669377a7f858218f6994562ea)
1e36c2aa8SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
2e36c2aa8SMatthias Sohn<!--
35c5f7c6bSMatthias Sohn  Copyright (C) 2010-2012, Matthias Sohn <matthias.sohn@sap.com> and others
4e36c2aa8SMatthias 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.
8e36c2aa8SMatthias Sohn
95c5f7c6bSMatthias Sohn  SPDX-License-Identifier: BSD-3-Clause
10e36c2aa8SMatthias Sohn-->
11e36c2aa8SMatthias Sohn
12e36c2aa8SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
13e36c2aa8SMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14e36c2aa8SMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15e36c2aa8SMatthias Sohn  <modelVersion>4.0.0</modelVersion>
16e36c2aa8SMatthias Sohn
17e36c2aa8SMatthias Sohn  <parent>
18e36c2aa8SMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
19e36c2aa8SMatthias Sohn    <artifactId>jgit.tycho.parent</artifactId>
20*1cbfea9eSMatthias Sohn    <version>5.13.0-SNAPSHOT</version>
21e36c2aa8SMatthias Sohn  </parent>
22e36c2aa8SMatthias Sohn
2343543e79SMatthias Sohn  <groupId>org.eclipse.jgit.feature</groupId>
2443543e79SMatthias Sohn  <artifactId>org.eclipse.jgit.junit</artifactId>
25e36c2aa8SMatthias Sohn  <packaging>eclipse-feature</packaging>
26e36c2aa8SMatthias Sohn
27f5f1536fSMatthias Sohn  <name>JGit JUnit Feature</name>
28e36c2aa8SMatthias Sohn
29d7d035cbSMatthias Sohn  <dependencies>
30d7d035cbSMatthias Sohn    <dependency>
31d7d035cbSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
32d7d035cbSMatthias Sohn      <artifactId>org.eclipse.jgit.junit</artifactId>
33a898836eSMatthias Sohn      <version>${project.version}</version>
34d7d035cbSMatthias Sohn    </dependency>
3551e2646dSJens Baumgart    <dependency>
3651e2646dSJens Baumgart      <groupId>org.eclipse.jgit</groupId>
3751e2646dSJens Baumgart      <artifactId>org.eclipse.jgit.junit.http</artifactId>
38a898836eSMatthias Sohn      <version>${project.version}</version>
3951e2646dSJens Baumgart    </dependency>
4051e2646dSJens Baumgart    <dependency>
4151e2646dSJens Baumgart      <groupId>org.eclipse.jgit</groupId>
421316d43eSThomas Wolf      <artifactId>org.eclipse.jgit.junit.ssh</artifactId>
431316d43eSThomas Wolf      <version>${project.version}</version>
441316d43eSThomas Wolf    </dependency>
451316d43eSThomas Wolf    <dependency>
461316d43eSThomas Wolf      <groupId>org.eclipse.jgit</groupId>
4751e2646dSJens Baumgart      <artifactId>org.eclipse.jgit.http.server</artifactId>
48a898836eSMatthias Sohn      <version>${project.version}</version>
4951e2646dSJens Baumgart    </dependency>
50d7d035cbSMatthias Sohn  </dependencies>
51d7d035cbSMatthias Sohn
52e36c2aa8SMatthias Sohn</project>
53