xref: /JGit/org.eclipse.jgit.http.apache/pom.xml (revision 27f1fb668f09bccf7c506f51f16d70d04ec8a240)
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>
5190107d53SMatthias 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 />
63*27f1fb66SMatthias Sohn    <source-bundle-manifest>${project.build.directory}/META-INF/SOURCE-MANIFEST.MF</source-bundle-manifest>
643d3df394SMatthias Sohn  </properties>
653d3df394SMatthias Sohn
663d3df394SMatthias Sohn  <dependencies>
673d3df394SMatthias Sohn    <dependency>
683d3df394SMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
693d3df394SMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
703d3df394SMatthias Sohn      <version>${project.version}</version>
713d3df394SMatthias Sohn    </dependency>
72e1fb47bdSMatthias Sohn    <dependency>
73e1fb47bdSMatthias Sohn      <groupId>org.apache.httpcomponents</groupId>
74e1fb47bdSMatthias Sohn      <artifactId>httpclient</artifactId>
75e1fb47bdSMatthias Sohn    </dependency>
76e1fb47bdSMatthias Sohn    <dependency>
77e1fb47bdSMatthias Sohn      <groupId>org.apache.httpcomponents</groupId>
78e1fb47bdSMatthias Sohn      <artifactId>httpcore</artifactId>
79e1fb47bdSMatthias Sohn    </dependency>
803d3df394SMatthias Sohn  </dependencies>
813d3df394SMatthias Sohn
823d3df394SMatthias Sohn  <build>
833d3df394SMatthias Sohn    <sourceDirectory>src/</sourceDirectory>
843d3df394SMatthias Sohn
853d3df394SMatthias Sohn    <resources>
863d3df394SMatthias Sohn      <resource>
873d3df394SMatthias Sohn        <directory>.</directory>
883d3df394SMatthias Sohn        <includes>
893d3df394SMatthias Sohn          <include>plugin.properties</include>
903d3df394SMatthias Sohn          <include>about.html</include>
913d3df394SMatthias Sohn        </includes>
923d3df394SMatthias Sohn      </resource>
933d3df394SMatthias Sohn      <resource>
943d3df394SMatthias Sohn        <directory>resources/</directory>
953d3df394SMatthias Sohn      </resource>
963d3df394SMatthias Sohn    </resources>
973d3df394SMatthias Sohn
983d3df394SMatthias Sohn    <plugins>
993d3df394SMatthias Sohn      <plugin>
100*27f1fb66SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
101*27f1fb66SMatthias Sohn        <artifactId>maven-antrun-plugin</artifactId>
102*27f1fb66SMatthias Sohn        <executions>
103*27f1fb66SMatthias Sohn          <execution>
104*27f1fb66SMatthias Sohn            <id>translate-source-qualifier</id>
105*27f1fb66SMatthias Sohn            <phase>generate-resources</phase>
106*27f1fb66SMatthias Sohn            <configuration>
107*27f1fb66SMatthias Sohn              <target>
108*27f1fb66SMatthias Sohn                <copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true"/>
109*27f1fb66SMatthias Sohn                <replace file="${source-bundle-manifest}">
110*27f1fb66SMatthias Sohn                  <replacefilter token=".qualifier" value=".${maven.build.timestamp}"/>
111*27f1fb66SMatthias Sohn                </replace>
112*27f1fb66SMatthias Sohn              </target>
113*27f1fb66SMatthias Sohn            </configuration>
114*27f1fb66SMatthias Sohn            <goals>
115*27f1fb66SMatthias Sohn              <goal>run</goal>
116*27f1fb66SMatthias Sohn            </goals>
117*27f1fb66SMatthias Sohn          </execution>
118*27f1fb66SMatthias Sohn        </executions>
119*27f1fb66SMatthias Sohn      </plugin>
120*27f1fb66SMatthias Sohn
121*27f1fb66SMatthias Sohn      <plugin>
122*27f1fb66SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
123*27f1fb66SMatthias Sohn        <artifactId>maven-source-plugin</artifactId>
124*27f1fb66SMatthias Sohn        <inherited>true</inherited>
125*27f1fb66SMatthias Sohn        <executions>
126*27f1fb66SMatthias Sohn          <execution>
127*27f1fb66SMatthias Sohn            <id>attach-sources</id>
128*27f1fb66SMatthias Sohn            <phase>process-classes</phase>
129*27f1fb66SMatthias Sohn            <goals>
130*27f1fb66SMatthias Sohn              <goal>jar</goal>
131*27f1fb66SMatthias Sohn            </goals>
132*27f1fb66SMatthias Sohn            <configuration>
133*27f1fb66SMatthias Sohn              <archive>
134*27f1fb66SMatthias Sohn                <manifestFile>${source-bundle-manifest}</manifestFile>
135*27f1fb66SMatthias Sohn              </archive>
136*27f1fb66SMatthias Sohn            </configuration>
137*27f1fb66SMatthias Sohn          </execution>
138*27f1fb66SMatthias Sohn        </executions>
139*27f1fb66SMatthias Sohn      </plugin>
140*27f1fb66SMatthias Sohn
141*27f1fb66SMatthias Sohn      <plugin>
1423d3df394SMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
1433d3df394SMatthias Sohn        <configuration>
1443d3df394SMatthias Sohn          <archive>
1453d3df394SMatthias Sohn            <manifestFile>${bundle-manifest}</manifestFile>
1463d3df394SMatthias Sohn          </archive>
1473d3df394SMatthias Sohn        </configuration>
1483d3df394SMatthias Sohn      </plugin>
1493d3df394SMatthias Sohn
1503d3df394SMatthias Sohn      <plugin>
151100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
152100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
153100179a1SMatthias Sohn          <version>${japicmp-version}</version>
154100179a1SMatthias Sohn          <configuration>
155100179a1SMatthias Sohn              <oldVersion>
156100179a1SMatthias Sohn                  <dependency>
157100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
158100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
159100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
160100179a1SMatthias Sohn                  </dependency>
161100179a1SMatthias Sohn              </oldVersion>
162100179a1SMatthias Sohn              <newVersion>
163100179a1SMatthias Sohn                  <file>
164100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
165100179a1SMatthias Sohn                  </file>
166100179a1SMatthias Sohn              </newVersion>
167100179a1SMatthias Sohn              <parameter>
168100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
169100179a1SMatthias Sohn                  <includes>
170100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
171100179a1SMatthias Sohn                  </includes>
172100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
173100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
174100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
175100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
176100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
177100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
178100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
179100179a1SMatthias Sohn              </parameter>
180100179a1SMatthias Sohn              <skip>false</skip>
181100179a1SMatthias Sohn          </configuration>
182100179a1SMatthias Sohn          <executions>
183100179a1SMatthias Sohn            <execution>
184100179a1SMatthias Sohn             <phase>verify</phase>
185100179a1SMatthias Sohn             <goals>
186100179a1SMatthias Sohn               <goal>cmp</goal>
187100179a1SMatthias Sohn             </goals>
188100179a1SMatthias Sohn          </execution>
189100179a1SMatthias Sohn        </executions>
1903d3df394SMatthias Sohn      </plugin>
1913d3df394SMatthias Sohn    </plugins>
1923d3df394SMatthias Sohn  </build>
1933d3df394SMatthias Sohn
1943d3df394SMatthias Sohn  <reporting>
1953d3df394SMatthias Sohn    <plugins>
1963d3df394SMatthias Sohn      <plugin>
197100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
198100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
199100179a1SMatthias Sohn          <version>${japicmp-version}</version>
200100179a1SMatthias Sohn          <reportSets>
201100179a1SMatthias Sohn              <reportSet>
202100179a1SMatthias Sohn                  <reports>
203100179a1SMatthias Sohn                      <report>cmp-report</report>
204100179a1SMatthias Sohn                  </reports>
205100179a1SMatthias Sohn              </reportSet>
206100179a1SMatthias Sohn          </reportSets>
2073d3df394SMatthias Sohn          <configuration>
208100179a1SMatthias Sohn              <oldVersion>
209100179a1SMatthias Sohn                  <dependency>
210100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
211100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
212100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
213100179a1SMatthias Sohn                  </dependency>
214100179a1SMatthias Sohn              </oldVersion>
215100179a1SMatthias Sohn              <newVersion>
216100179a1SMatthias Sohn                  <file>
217100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
218100179a1SMatthias Sohn                  </file>
219100179a1SMatthias Sohn              </newVersion>
220100179a1SMatthias Sohn              <parameter>
221100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
222100179a1SMatthias Sohn                  <includes>
223100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
224100179a1SMatthias Sohn                  </includes>
225100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
226100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
227100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
228100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
229100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
230100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
231100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
232100179a1SMatthias Sohn              </parameter>
233100179a1SMatthias Sohn              <skip>false</skip>
2343d3df394SMatthias Sohn          </configuration>
2353d3df394SMatthias Sohn      </plugin>
2363d3df394SMatthias Sohn    </plugins>
2373d3df394SMatthias Sohn  </reporting>
2383d3df394SMatthias Sohn</project>
239