xref: /JGit/org.eclipse.jgit.packaging/org.eclipse.jgit.http.apache.feature/pom.xml (revision 1cbfea9ece03b40669377a7f858218f6994562ea)
13d3df394SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
23d3df394SMatthias Sohn<!--
35c5f7c6bSMatthias Sohn  Copyright (C) 2014, Matthias Sohn <matthias.sohn@sap.com> and others
43d3df394SMatthias 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.
83d3df394SMatthias Sohn
95c5f7c6bSMatthias Sohn  SPDX-License-Identifier: BSD-3-Clause
103d3df394SMatthias Sohn-->
113d3df394SMatthias Sohn
123d3df394SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
133d3df394SMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
143d3df394SMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
153d3df394SMatthias Sohn  <modelVersion>4.0.0</modelVersion>
163d3df394SMatthias Sohn
173d3df394SMatthias Sohn  <parent>
183d3df394SMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
193d3df394SMatthias Sohn    <artifactId>jgit.tycho.parent</artifactId>
20*1cbfea9eSMatthias Sohn    <version>5.13.0-SNAPSHOT</version>
213d3df394SMatthias Sohn  </parent>
223d3df394SMatthias Sohn
233d3df394SMatthias Sohn  <groupId>org.eclipse.jgit.feature</groupId>
243d3df394SMatthias Sohn  <artifactId>org.eclipse.jgit.http.apache</artifactId>
253d3df394SMatthias Sohn  <packaging>eclipse-feature</packaging>
263d3df394SMatthias Sohn
273d3df394SMatthias Sohn  <name>JGit - Optional Http support using Apache httpclient</name>
283d3df394SMatthias Sohn  <dependencies>
293d3df394SMatthias Sohn
303d3df394SMatthias Sohn    <dependency>
313d3df394SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
323d3df394SMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
333d3df394SMatthias Sohn      <version>${project.version}</version>
343d3df394SMatthias Sohn    </dependency>
353d3df394SMatthias Sohn
363d3df394SMatthias Sohn    <dependency>
373d3df394SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
383d3df394SMatthias Sohn      <artifactId>org.eclipse.jgit.http.apache</artifactId>
393d3df394SMatthias Sohn      <version>${project.version}</version>
403d3df394SMatthias Sohn    </dependency>
413d3df394SMatthias Sohn
423d3df394SMatthias Sohn  </dependencies>
433d3df394SMatthias Sohn
443d3df394SMatthias Sohn</project>
45