13d3df394SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 23d3df394SMatthias Sohn<!-- 33d3df394SMatthias Sohn Copyright (C) 2014, Matthias Sohn <matthias.sohn@sap.com> 43d3df394SMatthias Sohn and other copyright owners as documented in the project's IP log. 53d3df394SMatthias Sohn 63d3df394SMatthias Sohn This program and the accompanying materials are made available 73d3df394SMatthias Sohn under the terms of the Eclipse Distribution License v1.0 which 83d3df394SMatthias Sohn accompanies this distribution, is reproduced below, and is 93d3df394SMatthias Sohn available at http://www.eclipse.org/org/documents/edl-v10.php 103d3df394SMatthias Sohn 113d3df394SMatthias Sohn All rights reserved. 123d3df394SMatthias Sohn 133d3df394SMatthias Sohn Redistribution and use in source and binary forms, with or 143d3df394SMatthias Sohn without modification, are permitted provided that the following 153d3df394SMatthias Sohn conditions are met: 163d3df394SMatthias Sohn 173d3df394SMatthias Sohn - Redistributions of source code must retain the above copyright 183d3df394SMatthias Sohn notice, this list of conditions and the following disclaimer. 193d3df394SMatthias Sohn 203d3df394SMatthias Sohn - Redistributions in binary form must reproduce the above 213d3df394SMatthias Sohn copyright notice, this list of conditions and the following 223d3df394SMatthias Sohn disclaimer in the documentation and/or other materials provided 233d3df394SMatthias Sohn with the distribution. 243d3df394SMatthias Sohn 253d3df394SMatthias Sohn - Neither the name of the Eclipse Foundation, Inc. nor the 263d3df394SMatthias Sohn names of its contributors may be used to endorse or promote 273d3df394SMatthias Sohn products derived from this software without specific prior 283d3df394SMatthias Sohn written permission. 293d3df394SMatthias Sohn 303d3df394SMatthias Sohn THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 313d3df394SMatthias Sohn CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 323d3df394SMatthias Sohn INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 333d3df394SMatthias Sohn OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 343d3df394SMatthias Sohn ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 353d3df394SMatthias Sohn CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 363d3df394SMatthias Sohn SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 373d3df394SMatthias Sohn NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 383d3df394SMatthias Sohn LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 393d3df394SMatthias Sohn CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 403d3df394SMatthias Sohn STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 413d3df394SMatthias Sohn ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 423d3df394SMatthias Sohn ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 433d3df394SMatthias Sohn--> 443d3df394SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 453d3df394SMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 463d3df394SMatthias Sohn <modelVersion>4.0.0</modelVersion> 473d3df394SMatthias Sohn 483d3df394SMatthias Sohn <parent> 493d3df394SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 503d3df394SMatthias Sohn <artifactId>org.eclipse.jgit-parent</artifactId> 51*90107d53SMatthias Sohn <version>5.4.0-SNAPSHOT</version> 523d3df394SMatthias Sohn </parent> 533d3df394SMatthias Sohn 543d3df394SMatthias Sohn <artifactId>org.eclipse.jgit.http.apache</artifactId> 553d3df394SMatthias Sohn <name>JGit - Apache httpclient based HTTP support</name> 563d3df394SMatthias Sohn 573d3df394SMatthias Sohn <description> 583d3df394SMatthias Sohn Apache httpclient based HTTP support 593d3df394SMatthias Sohn </description> 603d3df394SMatthias Sohn 613d3df394SMatthias Sohn <properties> 623d3df394SMatthias Sohn <translate-qualifier /> 633d3df394SMatthias Sohn </properties> 643d3df394SMatthias Sohn 653d3df394SMatthias Sohn <dependencies> 663d3df394SMatthias Sohn <dependency> 673d3df394SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 683d3df394SMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 693d3df394SMatthias Sohn <version>${project.version}</version> 703d3df394SMatthias Sohn </dependency> 71e1fb47bdSMatthias Sohn <dependency> 72e1fb47bdSMatthias Sohn <groupId>org.apache.httpcomponents</groupId> 73e1fb47bdSMatthias Sohn <artifactId>httpclient</artifactId> 74e1fb47bdSMatthias Sohn </dependency> 75e1fb47bdSMatthias Sohn <dependency> 76e1fb47bdSMatthias Sohn <groupId>org.apache.httpcomponents</groupId> 77e1fb47bdSMatthias Sohn <artifactId>httpcore</artifactId> 78e1fb47bdSMatthias Sohn </dependency> 793d3df394SMatthias Sohn </dependencies> 803d3df394SMatthias Sohn 813d3df394SMatthias Sohn <build> 823d3df394SMatthias Sohn <sourceDirectory>src/</sourceDirectory> 833d3df394SMatthias Sohn 843d3df394SMatthias Sohn <resources> 853d3df394SMatthias Sohn <resource> 863d3df394SMatthias Sohn <directory>.</directory> 873d3df394SMatthias Sohn <includes> 883d3df394SMatthias Sohn <include>plugin.properties</include> 893d3df394SMatthias Sohn <include>about.html</include> 903d3df394SMatthias Sohn </includes> 913d3df394SMatthias Sohn </resource> 923d3df394SMatthias Sohn <resource> 933d3df394SMatthias Sohn <directory>resources/</directory> 943d3df394SMatthias Sohn </resource> 953d3df394SMatthias Sohn </resources> 963d3df394SMatthias Sohn 973d3df394SMatthias Sohn <plugins> 983d3df394SMatthias Sohn <plugin> 993d3df394SMatthias Sohn <artifactId>maven-jar-plugin</artifactId> 1003d3df394SMatthias Sohn <configuration> 1013d3df394SMatthias Sohn <archive> 1023d3df394SMatthias Sohn <manifestFile>${bundle-manifest}</manifestFile> 1033d3df394SMatthias Sohn </archive> 1043d3df394SMatthias Sohn </configuration> 1053d3df394SMatthias Sohn </plugin> 1063d3df394SMatthias Sohn 1073d3df394SMatthias Sohn <plugin> 108100179a1SMatthias Sohn <groupId>com.github.siom79.japicmp</groupId> 109100179a1SMatthias Sohn <artifactId>japicmp-maven-plugin</artifactId> 110100179a1SMatthias Sohn <version>${japicmp-version}</version> 111100179a1SMatthias Sohn <configuration> 112100179a1SMatthias Sohn <oldVersion> 113100179a1SMatthias Sohn <dependency> 114100179a1SMatthias Sohn <groupId>${project.groupId}</groupId> 115100179a1SMatthias Sohn <artifactId>${project.artifactId}</artifactId> 116100179a1SMatthias Sohn <version>${jgit-last-release-version}</version> 117100179a1SMatthias Sohn </dependency> 118100179a1SMatthias Sohn </oldVersion> 119100179a1SMatthias Sohn <newVersion> 120100179a1SMatthias Sohn <file> 121100179a1SMatthias Sohn <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> 122100179a1SMatthias Sohn </file> 123100179a1SMatthias Sohn </newVersion> 124100179a1SMatthias Sohn <parameter> 125100179a1SMatthias Sohn <onlyModified>true</onlyModified> 126100179a1SMatthias Sohn <includes> 127100179a1SMatthias Sohn <include>org.eclipse.jgit.*</include> 128100179a1SMatthias Sohn </includes> 129100179a1SMatthias Sohn <accessModifier>public</accessModifier> 130100179a1SMatthias Sohn <breakBuildOnModifications>false</breakBuildOnModifications> 131100179a1SMatthias Sohn <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> 132100179a1SMatthias Sohn <onlyBinaryIncompatible>false</onlyBinaryIncompatible> 133100179a1SMatthias Sohn <includeSynthetic>false</includeSynthetic> 134100179a1SMatthias Sohn <ignoreMissingClasses>false</ignoreMissingClasses> 135100179a1SMatthias Sohn <skipPomModules>true</skipPomModules> 136100179a1SMatthias Sohn </parameter> 137100179a1SMatthias Sohn <skip>false</skip> 138100179a1SMatthias Sohn </configuration> 139100179a1SMatthias Sohn <executions> 140100179a1SMatthias Sohn <execution> 141100179a1SMatthias Sohn <phase>verify</phase> 142100179a1SMatthias Sohn <goals> 143100179a1SMatthias Sohn <goal>cmp</goal> 144100179a1SMatthias Sohn </goals> 145100179a1SMatthias Sohn </execution> 146100179a1SMatthias Sohn </executions> 1473d3df394SMatthias Sohn </plugin> 1483d3df394SMatthias Sohn </plugins> 1493d3df394SMatthias Sohn </build> 1503d3df394SMatthias Sohn 1513d3df394SMatthias Sohn <reporting> 1523d3df394SMatthias Sohn <plugins> 1533d3df394SMatthias Sohn <plugin> 154100179a1SMatthias Sohn <groupId>com.github.siom79.japicmp</groupId> 155100179a1SMatthias Sohn <artifactId>japicmp-maven-plugin</artifactId> 156100179a1SMatthias Sohn <version>${japicmp-version}</version> 157100179a1SMatthias Sohn <reportSets> 158100179a1SMatthias Sohn <reportSet> 159100179a1SMatthias Sohn <reports> 160100179a1SMatthias Sohn <report>cmp-report</report> 161100179a1SMatthias Sohn </reports> 162100179a1SMatthias Sohn </reportSet> 163100179a1SMatthias Sohn </reportSets> 1643d3df394SMatthias Sohn <configuration> 165100179a1SMatthias Sohn <oldVersion> 166100179a1SMatthias Sohn <dependency> 167100179a1SMatthias Sohn <groupId>${project.groupId}</groupId> 168100179a1SMatthias Sohn <artifactId>${project.artifactId}</artifactId> 169100179a1SMatthias Sohn <version>${jgit-last-release-version}</version> 170100179a1SMatthias Sohn </dependency> 171100179a1SMatthias Sohn </oldVersion> 172100179a1SMatthias Sohn <newVersion> 173100179a1SMatthias Sohn <file> 174100179a1SMatthias Sohn <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> 175100179a1SMatthias Sohn </file> 176100179a1SMatthias Sohn </newVersion> 177100179a1SMatthias Sohn <parameter> 178100179a1SMatthias Sohn <onlyModified>true</onlyModified> 179100179a1SMatthias Sohn <includes> 180100179a1SMatthias Sohn <include>org.eclipse.jgit.*</include> 181100179a1SMatthias Sohn </includes> 182100179a1SMatthias Sohn <accessModifier>public</accessModifier> 183100179a1SMatthias Sohn <breakBuildOnModifications>false</breakBuildOnModifications> 184100179a1SMatthias Sohn <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> 185100179a1SMatthias Sohn <onlyBinaryIncompatible>false</onlyBinaryIncompatible> 186100179a1SMatthias Sohn <includeSynthetic>false</includeSynthetic> 187100179a1SMatthias Sohn <ignoreMissingClasses>false</ignoreMissingClasses> 188100179a1SMatthias Sohn <skipPomModules>true</skipPomModules> 189100179a1SMatthias Sohn </parameter> 190100179a1SMatthias Sohn <skip>false</skip> 1913d3df394SMatthias Sohn </configuration> 1923d3df394SMatthias Sohn </plugin> 1933d3df394SMatthias Sohn </plugins> 1943d3df394SMatthias Sohn </reporting> 1953d3df394SMatthias Sohn</project> 196