xref: /JGit/org.eclipse.jgit/pom.xml (revision de7698476b44567a0b998a39c61e206b8149d63b)
1dad52baaSShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?>
2dad52baaSShawn O. Pearce<!--
3dad52baaSShawn O. Pearce   Copyright (C) 2009, Google Inc.
496c7f75fSIgor Fedorenko   Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com>
5dad52baaSShawn O. Pearce   Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com>
6407fe631SMatthias Sohn   Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com>
7dad52baaSShawn O. Pearce   and other copyright owners as documented in the project's IP log.
8dad52baaSShawn O. Pearce
9dad52baaSShawn O. Pearce   This program and the accompanying materials are made available
10dad52baaSShawn O. Pearce   under the terms of the Eclipse Distribution License v1.0 which
11dad52baaSShawn O. Pearce   accompanies this distribution, is reproduced below, and is
12dad52baaSShawn O. Pearce   available at http://www.eclipse.org/org/documents/edl-v10.php
13dad52baaSShawn O. Pearce
14dad52baaSShawn O. Pearce   All rights reserved.
15dad52baaSShawn O. Pearce
16dad52baaSShawn O. Pearce   Redistribution and use in source and binary forms, with or
17dad52baaSShawn O. Pearce   without modification, are permitted provided that the following
18dad52baaSShawn O. Pearce   conditions are met:
19dad52baaSShawn O. Pearce
20dad52baaSShawn O. Pearce   - Redistributions of source code must retain the above copyright
21dad52baaSShawn O. Pearce     notice, this list of conditions and the following disclaimer.
22dad52baaSShawn O. Pearce
23dad52baaSShawn O. Pearce   - Redistributions in binary form must reproduce the above
24dad52baaSShawn O. Pearce     copyright notice, this list of conditions and the following
25dad52baaSShawn O. Pearce     disclaimer in the documentation and/or other materials provided
26dad52baaSShawn O. Pearce     with the distribution.
27dad52baaSShawn O. Pearce
28dad52baaSShawn O. Pearce   - Neither the name of the Eclipse Foundation, Inc. nor the
29dad52baaSShawn O. Pearce     names of its contributors may be used to endorse or promote
30dad52baaSShawn O. Pearce     products derived from this software without specific prior
31dad52baaSShawn O. Pearce     written permission.
32dad52baaSShawn O. Pearce
33dad52baaSShawn O. Pearce   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
34dad52baaSShawn O. Pearce   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
35dad52baaSShawn O. Pearce   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
36dad52baaSShawn O. Pearce   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37dad52baaSShawn O. Pearce   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
38dad52baaSShawn O. Pearce   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39dad52baaSShawn O. Pearce   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
40dad52baaSShawn O. Pearce   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
41dad52baaSShawn O. Pearce   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
42dad52baaSShawn O. Pearce   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
43dad52baaSShawn O. Pearce   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
44dad52baaSShawn O. Pearce   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
45dad52baaSShawn O. Pearce   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46dad52baaSShawn O. Pearce-->
47dad52baaSShawn O. Pearce
48dad52baaSShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0"
49dad52baaSShawn O. Pearce    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
50dad52baaSShawn O. Pearce    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
51dad52baaSShawn O. Pearce  <modelVersion>4.0.0</modelVersion>
52dad52baaSShawn O. Pearce
53dad52baaSShawn O. Pearce  <parent>
54dad52baaSShawn O. Pearce    <groupId>org.eclipse.jgit</groupId>
55fc5fc70eSShawn O. Pearce    <artifactId>org.eclipse.jgit-parent</artifactId>
56df9ce4b9SMatthias Sohn    <version>4.9.0-SNAPSHOT</version>
57dad52baaSShawn O. Pearce  </parent>
58dad52baaSShawn O. Pearce
59dad52baaSShawn O. Pearce  <artifactId>org.eclipse.jgit</artifactId>
60dad52baaSShawn O. Pearce  <name>JGit - Core</name>
61dad52baaSShawn O. Pearce
62dad52baaSShawn O. Pearce  <description>
63dad52baaSShawn O. Pearce    Repository access and algorithms
64dad52baaSShawn O. Pearce  </description>
65dad52baaSShawn O. Pearce
66407fe631SMatthias Sohn  <properties>
67407fe631SMatthias Sohn    <translate-qualifier/>
68f8eb7e16SMatthias Sohn    <source-bundle-manifest>${project.build.directory}/META-INF/SOURCE-MANIFEST.MF</source-bundle-manifest>
69407fe631SMatthias Sohn  </properties>
70407fe631SMatthias Sohn
71dad52baaSShawn O. Pearce  <dependencies>
72dad52baaSShawn O. Pearce    <dependency>
73dad52baaSShawn O. Pearce      <groupId>com.jcraft</groupId>
74dad52baaSShawn O. Pearce      <artifactId>jsch</artifactId>
75dad52baaSShawn O. Pearce    </dependency>
763b325917SColby Ranger
773b325917SColby Ranger    <dependency>
783b325917SColby Ranger      <groupId>com.googlecode.javaewah</groupId>
793b325917SColby Ranger      <artifactId>JavaEWAH</artifactId>
803b325917SColby Ranger    </dependency>
812290516dSChristian Halstrick
822290516dSChristian Halstrick    <dependency>
832290516dSChristian Halstrick      <groupId>org.apache.httpcomponents</groupId>
842290516dSChristian Halstrick      <artifactId>httpclient</artifactId>
852290516dSChristian Halstrick    </dependency>
86c18694e0SMatthias Sohn
87c18694e0SMatthias Sohn    <dependency>
88c18694e0SMatthias Sohn      <groupId>org.slf4j</groupId>
89c18694e0SMatthias Sohn      <artifactId>slf4j-api</artifactId>
90c18694e0SMatthias Sohn    </dependency>
91c4e209b2SMasaya Suzuki
92dad52baaSShawn O. Pearce  </dependencies>
93dad52baaSShawn O. Pearce
94dad52baaSShawn O. Pearce  <build>
95dad52baaSShawn O. Pearce    <sourceDirectory>src/</sourceDirectory>
96dad52baaSShawn O. Pearce
97dad52baaSShawn O. Pearce    <resources>
98dad52baaSShawn O. Pearce      <resource>
99dad52baaSShawn O. Pearce        <directory>.</directory>
100dad52baaSShawn O. Pearce        <includes>
101dad52baaSShawn O. Pearce          <include>plugin.properties</include>
102e1af16adSMatthias Sohn          <include>about.html</include>
103e0910edfSMatthias Sohn		  <include>META-INF/eclipse.inf</include>
104dad52baaSShawn O. Pearce        </includes>
105dad52baaSShawn O. Pearce      </resource>
106f3d8a8ecSSasa Zivkov      <resource>
107f3d8a8ecSSasa Zivkov        <directory>resources/</directory>
108f3d8a8ecSSasa Zivkov      </resource>
109dad52baaSShawn O. Pearce    </resources>
11096c7f75fSIgor Fedorenko
111fc5fc70eSShawn O. Pearce    <plugins>
112fc5fc70eSShawn O. Pearce      <plugin>
113f8eb7e16SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
114f8eb7e16SMatthias Sohn        <artifactId>maven-antrun-plugin</artifactId>
115f8eb7e16SMatthias Sohn        <executions>
116f8eb7e16SMatthias Sohn          <execution>
117f8eb7e16SMatthias Sohn            <id>translate-source-qualifier</id>
118f8eb7e16SMatthias Sohn            <phase>generate-resources</phase>
119f8eb7e16SMatthias Sohn            <configuration>
1205c788e2cSAlexander Kurtakov              <target>
121f8eb7e16SMatthias Sohn                <copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true"/>
122f8eb7e16SMatthias Sohn                <replace file="${source-bundle-manifest}">
123f8eb7e16SMatthias Sohn                  <replacefilter token=".qualifier" value=".${maven.build.timestamp}"/>
124f8eb7e16SMatthias Sohn                </replace>
1255c788e2cSAlexander Kurtakov              </target>
126f8eb7e16SMatthias Sohn            </configuration>
127f8eb7e16SMatthias Sohn            <goals>
128f8eb7e16SMatthias Sohn              <goal>run</goal>
129f8eb7e16SMatthias Sohn            </goals>
130f8eb7e16SMatthias Sohn          </execution>
131f8eb7e16SMatthias Sohn        </executions>
132f8eb7e16SMatthias Sohn      </plugin>
133f8eb7e16SMatthias Sohn
134f8eb7e16SMatthias Sohn      <plugin>
135f8eb7e16SMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
136f8eb7e16SMatthias Sohn        <artifactId>maven-source-plugin</artifactId>
137f8eb7e16SMatthias Sohn        <inherited>true</inherited>
138f8eb7e16SMatthias Sohn        <executions>
139f8eb7e16SMatthias Sohn          <execution>
140f8eb7e16SMatthias Sohn            <id>attach-sources</id>
141f8eb7e16SMatthias Sohn            <phase>process-classes</phase>
142f8eb7e16SMatthias Sohn            <goals>
143f8eb7e16SMatthias Sohn              <goal>jar</goal>
144f8eb7e16SMatthias Sohn            </goals>
145f8eb7e16SMatthias Sohn            <configuration>
146f8eb7e16SMatthias Sohn              <archive>
147f8eb7e16SMatthias Sohn                <manifestFile>${source-bundle-manifest}</manifestFile>
148f8eb7e16SMatthias Sohn              </archive>
149f8eb7e16SMatthias Sohn            </configuration>
150f8eb7e16SMatthias Sohn          </execution>
151f8eb7e16SMatthias Sohn        </executions>
152f8eb7e16SMatthias Sohn      </plugin>
153f8eb7e16SMatthias Sohn
154f8eb7e16SMatthias Sohn      <plugin>
155fc5fc70eSShawn O. Pearce        <artifactId>maven-jar-plugin</artifactId>
156fc5fc70eSShawn O. Pearce        <configuration>
157fc5fc70eSShawn O. Pearce          <archive>
158407fe631SMatthias Sohn            <manifestFile>${bundle-manifest}</manifestFile>
159fc5fc70eSShawn O. Pearce          </archive>
160fc5fc70eSShawn O. Pearce        </configuration>
161fc5fc70eSShawn O. Pearce      </plugin>
162e178ba20SMatthias Sohn
163e178ba20SMatthias Sohn      <plugin>
164100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
165100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
166100179a1SMatthias Sohn          <version>${japicmp-version}</version>
167100179a1SMatthias Sohn          <configuration>
168100179a1SMatthias Sohn              <oldVersion>
169100179a1SMatthias Sohn                  <dependency>
170100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
171100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
172100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
173100179a1SMatthias Sohn                  </dependency>
174100179a1SMatthias Sohn              </oldVersion>
175100179a1SMatthias Sohn              <newVersion>
176100179a1SMatthias Sohn                  <file>
177100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
178100179a1SMatthias Sohn                  </file>
179100179a1SMatthias Sohn              </newVersion>
180100179a1SMatthias Sohn              <parameter>
181100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
182100179a1SMatthias Sohn                  <includes>
183100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
184100179a1SMatthias Sohn                  </includes>
185100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
186100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
187100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
188100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
189100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
190100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
191100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
192100179a1SMatthias Sohn              </parameter>
193100179a1SMatthias Sohn              <skip>false</skip>
194100179a1SMatthias Sohn          </configuration>
195100179a1SMatthias Sohn          <executions>
196100179a1SMatthias Sohn            <execution>
197100179a1SMatthias Sohn             <phase>verify</phase>
198100179a1SMatthias Sohn             <goals>
199100179a1SMatthias Sohn               <goal>cmp</goal>
200100179a1SMatthias Sohn             </goals>
201100179a1SMatthias Sohn          </execution>
202100179a1SMatthias Sohn        </executions>
203e178ba20SMatthias Sohn      </plugin>
204df85978aSMatthias Sohn    </plugins>
205e178ba20SMatthias Sohn
206df85978aSMatthias Sohn    <pluginManagement>
207df85978aSMatthias Sohn      <plugins>
208241ab227SChris Aniszczyk        <plugin>
209*de769847SMatthias Sohn          <groupId>com.github.hazendaz.spotbugs</groupId>
210*de769847SMatthias Sohn          <artifactId>spotbugs-maven-plugin</artifactId>
211241ab227SChris Aniszczyk          <configuration>
212f6a15f04SMatthias Sohn            <excludeFilterFile>findBugs/FindBugsExcludeFilter.xml</excludeFilterFile>
213241ab227SChris Aniszczyk          </configuration>
214241ab227SChris Aniszczyk        </plugin>
215fc5fc70eSShawn O. Pearce      </plugins>
216df85978aSMatthias Sohn    </pluginManagement>
217fc5fc70eSShawn O. Pearce  </build>
218e178ba20SMatthias Sohn
219e178ba20SMatthias Sohn  <reporting>
220e178ba20SMatthias Sohn    <plugins>
221e178ba20SMatthias Sohn      <plugin>
222100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
223100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
224100179a1SMatthias Sohn          <version>${japicmp-version}</version>
225100179a1SMatthias Sohn          <reportSets>
226100179a1SMatthias Sohn              <reportSet>
227100179a1SMatthias Sohn                  <reports>
228100179a1SMatthias Sohn                      <report>cmp-report</report>
229100179a1SMatthias Sohn                  </reports>
230100179a1SMatthias Sohn              </reportSet>
231100179a1SMatthias Sohn          </reportSets>
232e178ba20SMatthias Sohn          <configuration>
233100179a1SMatthias Sohn              <oldVersion>
234100179a1SMatthias Sohn                  <dependency>
235100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
236100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
237100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
238100179a1SMatthias Sohn                  </dependency>
239100179a1SMatthias Sohn              </oldVersion>
240100179a1SMatthias Sohn              <newVersion>
241100179a1SMatthias Sohn                  <file>
242100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
243100179a1SMatthias Sohn                  </file>
244100179a1SMatthias Sohn              </newVersion>
245100179a1SMatthias Sohn              <parameter>
246100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
247100179a1SMatthias Sohn                  <includes>
248100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
249100179a1SMatthias Sohn                  </includes>
250100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
251100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
252100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
253100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
254100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
255100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
256100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
257100179a1SMatthias Sohn              </parameter>
258100179a1SMatthias Sohn              <skip>false</skip>
259e178ba20SMatthias Sohn          </configuration>
260e178ba20SMatthias Sohn      </plugin>
261e178ba20SMatthias Sohn    </plugins>
262e178ba20SMatthias Sohn  </reporting>
263dad52baaSShawn O. Pearce</project>
264