1*3d3df394SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 2*3d3df394SMatthias Sohn<!-- 3*3d3df394SMatthias Sohn Copyright (C) 2014, Matthias Sohn <matthias.sohn@sap.com> 4*3d3df394SMatthias Sohn and other copyright owners as documented in the project's IP log. 5*3d3df394SMatthias Sohn 6*3d3df394SMatthias Sohn This program and the accompanying materials are made available 7*3d3df394SMatthias Sohn under the terms of the Eclipse Distribution License v1.0 which 8*3d3df394SMatthias Sohn accompanies this distribution, is reproduced below, and is 9*3d3df394SMatthias Sohn available at http://www.eclipse.org/org/documents/edl-v10.php 10*3d3df394SMatthias Sohn 11*3d3df394SMatthias Sohn All rights reserved. 12*3d3df394SMatthias Sohn 13*3d3df394SMatthias Sohn Redistribution and use in source and binary forms, with or 14*3d3df394SMatthias Sohn without modification, are permitted provided that the following 15*3d3df394SMatthias Sohn conditions are met: 16*3d3df394SMatthias Sohn 17*3d3df394SMatthias Sohn - Redistributions of source code must retain the above copyright 18*3d3df394SMatthias Sohn notice, this list of conditions and the following disclaimer. 19*3d3df394SMatthias Sohn 20*3d3df394SMatthias Sohn - Redistributions in binary form must reproduce the above 21*3d3df394SMatthias Sohn copyright notice, this list of conditions and the following 22*3d3df394SMatthias Sohn disclaimer in the documentation and/or other materials provided 23*3d3df394SMatthias Sohn with the distribution. 24*3d3df394SMatthias Sohn 25*3d3df394SMatthias Sohn - Neither the name of the Eclipse Foundation, Inc. nor the 26*3d3df394SMatthias Sohn names of its contributors may be used to endorse or promote 27*3d3df394SMatthias Sohn products derived from this software without specific prior 28*3d3df394SMatthias Sohn written permission. 29*3d3df394SMatthias Sohn 30*3d3df394SMatthias Sohn THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 31*3d3df394SMatthias Sohn CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 32*3d3df394SMatthias Sohn INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 33*3d3df394SMatthias Sohn OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 34*3d3df394SMatthias Sohn ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 35*3d3df394SMatthias Sohn CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 36*3d3df394SMatthias Sohn SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 37*3d3df394SMatthias Sohn NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 38*3d3df394SMatthias Sohn LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 39*3d3df394SMatthias Sohn CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 40*3d3df394SMatthias Sohn STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 41*3d3df394SMatthias Sohn ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 42*3d3df394SMatthias Sohn ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 43*3d3df394SMatthias Sohn--> 44*3d3df394SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 45*3d3df394SMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 46*3d3df394SMatthias Sohn <modelVersion>4.0.0</modelVersion> 47*3d3df394SMatthias Sohn 48*3d3df394SMatthias Sohn <parent> 49*3d3df394SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 50*3d3df394SMatthias Sohn <artifactId>org.eclipse.jgit-parent</artifactId> 51*3d3df394SMatthias Sohn <version>3.3.0-SNAPSHOT</version> 52*3d3df394SMatthias Sohn </parent> 53*3d3df394SMatthias Sohn 54*3d3df394SMatthias Sohn <artifactId>org.eclipse.jgit.http.apache</artifactId> 55*3d3df394SMatthias Sohn <name>JGit - Apache httpclient based HTTP support</name> 56*3d3df394SMatthias Sohn 57*3d3df394SMatthias Sohn <description> 58*3d3df394SMatthias Sohn Apache httpclient based HTTP support 59*3d3df394SMatthias Sohn </description> 60*3d3df394SMatthias Sohn 61*3d3df394SMatthias Sohn <properties> 62*3d3df394SMatthias Sohn <translate-qualifier /> 63*3d3df394SMatthias Sohn </properties> 64*3d3df394SMatthias Sohn 65*3d3df394SMatthias Sohn <dependencies> 66*3d3df394SMatthias Sohn <dependency> 67*3d3df394SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 68*3d3df394SMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 69*3d3df394SMatthias Sohn <version>${project.version}</version> 70*3d3df394SMatthias Sohn </dependency> 71*3d3df394SMatthias Sohn </dependencies> 72*3d3df394SMatthias Sohn 73*3d3df394SMatthias Sohn <build> 74*3d3df394SMatthias Sohn <sourceDirectory>src/</sourceDirectory> 75*3d3df394SMatthias Sohn 76*3d3df394SMatthias Sohn <resources> 77*3d3df394SMatthias Sohn <resource> 78*3d3df394SMatthias Sohn <directory>.</directory> 79*3d3df394SMatthias Sohn <includes> 80*3d3df394SMatthias Sohn <include>plugin.properties</include> 81*3d3df394SMatthias Sohn <include>about.html</include> 82*3d3df394SMatthias Sohn </includes> 83*3d3df394SMatthias Sohn </resource> 84*3d3df394SMatthias Sohn <resource> 85*3d3df394SMatthias Sohn <directory>resources/</directory> 86*3d3df394SMatthias Sohn </resource> 87*3d3df394SMatthias Sohn </resources> 88*3d3df394SMatthias Sohn 89*3d3df394SMatthias Sohn <plugins> 90*3d3df394SMatthias Sohn <plugin> 91*3d3df394SMatthias Sohn <artifactId>maven-jar-plugin</artifactId> 92*3d3df394SMatthias Sohn <configuration> 93*3d3df394SMatthias Sohn <archive> 94*3d3df394SMatthias Sohn <manifestFile>${bundle-manifest}</manifestFile> 95*3d3df394SMatthias Sohn </archive> 96*3d3df394SMatthias Sohn </configuration> 97*3d3df394SMatthias Sohn </plugin> 98*3d3df394SMatthias Sohn 99*3d3df394SMatthias Sohn <plugin> 100*3d3df394SMatthias Sohn <artifactId>maven-compiler-plugin</artifactId> 101*3d3df394SMatthias Sohn <configuration> 102*3d3df394SMatthias Sohn <source>1.5</source> 103*3d3df394SMatthias Sohn <target>1.5</target> 104*3d3df394SMatthias Sohn <encoding>UTF-8</encoding> 105*3d3df394SMatthias Sohn </configuration> 106*3d3df394SMatthias Sohn </plugin> 107*3d3df394SMatthias Sohn 108*3d3df394SMatthias Sohn <plugin> 109*3d3df394SMatthias Sohn <groupId>org.codehaus.mojo</groupId> 110*3d3df394SMatthias Sohn <artifactId>clirr-maven-plugin</artifactId> 111*3d3df394SMatthias Sohn </plugin> 112*3d3df394SMatthias Sohn </plugins> 113*3d3df394SMatthias Sohn </build> 114*3d3df394SMatthias Sohn 115*3d3df394SMatthias Sohn <reporting> 116*3d3df394SMatthias Sohn <plugins> 117*3d3df394SMatthias Sohn <plugin> 118*3d3df394SMatthias Sohn <groupId>org.codehaus.mojo</groupId> 119*3d3df394SMatthias Sohn <artifactId>clirr-maven-plugin</artifactId> 120*3d3df394SMatthias Sohn <version>${clirr-version}</version> 121*3d3df394SMatthias Sohn <configuration> 122*3d3df394SMatthias Sohn <comparisonVersion>${jgit-last-release-version}</comparisonVersion> 123*3d3df394SMatthias Sohn <minSeverity>info</minSeverity> 124*3d3df394SMatthias Sohn </configuration> 125*3d3df394SMatthias Sohn </plugin> 126*3d3df394SMatthias Sohn </plugins> 127*3d3df394SMatthias Sohn </reporting> 128*3d3df394SMatthias Sohn</project> 129