xref: /JGit/org.eclipse.jgit.http.apache/pom.xml (revision 6b544da293951a0c1497965baf7e4eddaa7bb7e7)
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*6b544da2SMatthias Sohn		<version>4.10.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>
713d3df394SMatthias Sohn	</dependencies>
723d3df394SMatthias Sohn
733d3df394SMatthias Sohn	<build>
743d3df394SMatthias Sohn		<sourceDirectory>src/</sourceDirectory>
753d3df394SMatthias Sohn
763d3df394SMatthias Sohn		<resources>
773d3df394SMatthias Sohn			<resource>
783d3df394SMatthias Sohn				<directory>.</directory>
793d3df394SMatthias Sohn				<includes>
803d3df394SMatthias Sohn					<include>plugin.properties</include>
813d3df394SMatthias Sohn                    <include>about.html</include>
823d3df394SMatthias Sohn                </includes>
833d3df394SMatthias Sohn			</resource>
843d3df394SMatthias Sohn			<resource>
853d3df394SMatthias Sohn				<directory>resources/</directory>
863d3df394SMatthias Sohn			</resource>
873d3df394SMatthias Sohn		</resources>
883d3df394SMatthias Sohn
893d3df394SMatthias Sohn		<plugins>
903d3df394SMatthias Sohn			<plugin>
913d3df394SMatthias Sohn				<artifactId>maven-jar-plugin</artifactId>
923d3df394SMatthias Sohn				<configuration>
933d3df394SMatthias Sohn					<archive>
943d3df394SMatthias Sohn						<manifestFile>${bundle-manifest}</manifestFile>
953d3df394SMatthias Sohn					</archive>
963d3df394SMatthias Sohn				</configuration>
973d3df394SMatthias Sohn			</plugin>
983d3df394SMatthias Sohn
993d3df394SMatthias Sohn      <plugin>
100100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
101100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
102100179a1SMatthias Sohn          <version>${japicmp-version}</version>
103100179a1SMatthias Sohn          <configuration>
104100179a1SMatthias Sohn              <oldVersion>
105100179a1SMatthias Sohn                  <dependency>
106100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
107100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
108100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
109100179a1SMatthias Sohn                  </dependency>
110100179a1SMatthias Sohn              </oldVersion>
111100179a1SMatthias Sohn              <newVersion>
112100179a1SMatthias Sohn                  <file>
113100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
114100179a1SMatthias Sohn                  </file>
115100179a1SMatthias Sohn              </newVersion>
116100179a1SMatthias Sohn              <parameter>
117100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
118100179a1SMatthias Sohn                  <includes>
119100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
120100179a1SMatthias Sohn                  </includes>
121100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
122100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
123100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
124100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
125100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
126100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
127100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
128100179a1SMatthias Sohn              </parameter>
129100179a1SMatthias Sohn              <skip>false</skip>
130100179a1SMatthias Sohn          </configuration>
131100179a1SMatthias Sohn          <executions>
132100179a1SMatthias Sohn            <execution>
133100179a1SMatthias Sohn             <phase>verify</phase>
134100179a1SMatthias Sohn             <goals>
135100179a1SMatthias Sohn               <goal>cmp</goal>
136100179a1SMatthias Sohn             </goals>
137100179a1SMatthias Sohn          </execution>
138100179a1SMatthias Sohn        </executions>
1393d3df394SMatthias Sohn      </plugin>
1403d3df394SMatthias Sohn		</plugins>
1413d3df394SMatthias Sohn	</build>
1423d3df394SMatthias Sohn
1433d3df394SMatthias Sohn	<reporting>
1443d3df394SMatthias Sohn    <plugins>
1453d3df394SMatthias Sohn      <plugin>
146100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
147100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
148100179a1SMatthias Sohn          <version>${japicmp-version}</version>
149100179a1SMatthias Sohn          <reportSets>
150100179a1SMatthias Sohn              <reportSet>
151100179a1SMatthias Sohn                  <reports>
152100179a1SMatthias Sohn                      <report>cmp-report</report>
153100179a1SMatthias Sohn                  </reports>
154100179a1SMatthias Sohn              </reportSet>
155100179a1SMatthias Sohn          </reportSets>
1563d3df394SMatthias Sohn          <configuration>
157100179a1SMatthias Sohn              <oldVersion>
158100179a1SMatthias Sohn                  <dependency>
159100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
160100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
161100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
162100179a1SMatthias Sohn                  </dependency>
163100179a1SMatthias Sohn              </oldVersion>
164100179a1SMatthias Sohn              <newVersion>
165100179a1SMatthias Sohn                  <file>
166100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
167100179a1SMatthias Sohn                  </file>
168100179a1SMatthias Sohn              </newVersion>
169100179a1SMatthias Sohn              <parameter>
170100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
171100179a1SMatthias Sohn                  <includes>
172100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
173100179a1SMatthias Sohn                  </includes>
174100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
175100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
176100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
177100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
178100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
179100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
180100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
181100179a1SMatthias Sohn              </parameter>
182100179a1SMatthias Sohn              <skip>false</skip>
1833d3df394SMatthias Sohn          </configuration>
1843d3df394SMatthias Sohn      </plugin>
1853d3df394SMatthias Sohn    </plugins>
1863d3df394SMatthias Sohn  </reporting>
1873d3df394SMatthias Sohn</project>
188