xref: /JGit/org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/pom.xml (revision 1cbfea9ece03b40669377a7f858218f6994562ea)
14974090dSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
24974090dSMatthias Sohn<!--
35c5f7c6bSMatthias Sohn  Copyright (C) 2012, Matthias Sohn <matthias.sohn@sap.com> and others
44974090dSMatthias 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.
84974090dSMatthias Sohn
95c5f7c6bSMatthias Sohn  SPDX-License-Identifier: BSD-3-Clause
104974090dSMatthias Sohn-->
114974090dSMatthias Sohn
124974090dSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
134974090dSMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
144974090dSMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
154974090dSMatthias Sohn  <modelVersion>4.0.0</modelVersion>
164974090dSMatthias Sohn
174974090dSMatthias Sohn  <parent>
184974090dSMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
194974090dSMatthias Sohn    <artifactId>jgit.tycho.parent</artifactId>
20*1cbfea9eSMatthias Sohn    <version>5.13.0-SNAPSHOT</version>
214974090dSMatthias Sohn  </parent>
224974090dSMatthias Sohn
234974090dSMatthias Sohn  <groupId>org.eclipse.jgit.feature</groupId>
244974090dSMatthias Sohn  <artifactId>org.eclipse.jgit.pgm</artifactId>
254974090dSMatthias Sohn  <packaging>eclipse-feature</packaging>
264974090dSMatthias Sohn
274974090dSMatthias Sohn  <name>JGit Command Line Interface Feature</name>
284974090dSMatthias Sohn
294974090dSMatthias Sohn  <dependencies>
304974090dSMatthias Sohn
314974090dSMatthias Sohn    <dependency>
324974090dSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
334974090dSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
34a898836eSMatthias Sohn      <version>${project.version}</version>
354974090dSMatthias Sohn    </dependency>
364974090dSMatthias Sohn
374974090dSMatthias Sohn    <dependency>
384974090dSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
394974090dSMatthias Sohn      <artifactId>org.eclipse.jgit.pgm</artifactId>
40a898836eSMatthias Sohn      <version>${project.version}</version>
414974090dSMatthias Sohn    </dependency>
424974090dSMatthias Sohn
434974090dSMatthias Sohn    <dependency>
444974090dSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
454974090dSMatthias Sohn      <artifactId>org.eclipse.jgit.ui</artifactId>
46a898836eSMatthias Sohn      <version>${project.version}</version>
474974090dSMatthias Sohn    </dependency>
484974090dSMatthias Sohn  </dependencies>
494974090dSMatthias Sohn
504974090dSMatthias Sohn</project>
51