xref: /JGit/org.eclipse.jgit.packaging/org.eclipse.jgit.feature/pom.xml (revision 1cbfea9ece03b40669377a7f858218f6994562ea)
1f2455798SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
2f2455798SMatthias Sohn<!--
35c5f7c6bSMatthias Sohn  Copyright (C) 2009-2012, Matthias Sohn <matthias.sohn@sap.com> and others
4f2455798SMatthias 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.
8f2455798SMatthias Sohn
95c5f7c6bSMatthias Sohn  SPDX-License-Identifier: BSD-3-Clause
10f2455798SMatthias Sohn-->
11f2455798SMatthias Sohn
12f2455798SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
13f2455798SMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14f2455798SMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15f2455798SMatthias Sohn  <modelVersion>4.0.0</modelVersion>
16f2455798SMatthias Sohn
17f2455798SMatthias Sohn  <parent>
18f2455798SMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
19f2455798SMatthias Sohn    <artifactId>jgit.tycho.parent</artifactId>
20*1cbfea9eSMatthias Sohn    <version>5.13.0-SNAPSHOT</version>
21f2455798SMatthias Sohn  </parent>
22f2455798SMatthias Sohn
2343543e79SMatthias Sohn  <groupId>org.eclipse.jgit.feature</groupId>
2443543e79SMatthias Sohn  <artifactId>org.eclipse.jgit</artifactId>
25f2455798SMatthias Sohn  <packaging>eclipse-feature</packaging>
26f2455798SMatthias Sohn
27f5f1536fSMatthias Sohn  <name>JGit Feature</name>
28f2455798SMatthias Sohn
29f2455798SMatthias Sohn  <dependencies>
30f2455798SMatthias Sohn    <dependency>
31f2455798SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
32f2455798SMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
33a898836eSMatthias Sohn      <version>${project.version}</version>
34f2455798SMatthias Sohn    </dependency>
35f2455798SMatthias Sohn  </dependencies>
36f2455798SMatthias Sohn
37f2455798SMatthias Sohn</project>
38