xref: /JGit/org.eclipse.jgit.archive/pom.xml (revision 100179a101f1fd9ce281397574d7ad729f08953a)
156276d05SJonathan Nieder<?xml version="1.0" encoding="UTF-8"?>
256276d05SJonathan Nieder<!--
356276d05SJonathan Nieder   Copyright (C) 2013, Google Inc.
456276d05SJonathan Nieder   and other copyright owners as documented in the project's IP log.
556276d05SJonathan Nieder
656276d05SJonathan Nieder   This program and the accompanying materials are made available
756276d05SJonathan Nieder   under the terms of the Eclipse Distribution License v1.0 which
856276d05SJonathan Nieder   accompanies this distribution, is reproduced below, and is
956276d05SJonathan Nieder   available at http://www.eclipse.org/org/documents/edl-v10.php
1056276d05SJonathan Nieder
1156276d05SJonathan Nieder   All rights reserved.
1256276d05SJonathan Nieder
1356276d05SJonathan Nieder   Redistribution and use in source and binary forms, with or
1456276d05SJonathan Nieder   without modification, are permitted provided that the following
1556276d05SJonathan Nieder   conditions are met:
1656276d05SJonathan Nieder
1756276d05SJonathan Nieder   - Redistributions of source code must retain the above copyright
1856276d05SJonathan Nieder     notice, this list of conditions and the following disclaimer.
1956276d05SJonathan Nieder
2056276d05SJonathan Nieder   - Redistributions in binary form must reproduce the above
2156276d05SJonathan Nieder     copyright notice, this list of conditions and the following
2256276d05SJonathan Nieder     disclaimer in the documentation and/or other materials provided
2356276d05SJonathan Nieder     with the distribution.
2456276d05SJonathan Nieder
2556276d05SJonathan Nieder   - Neither the name of the Eclipse Foundation, Inc. nor the
2656276d05SJonathan Nieder     names of its contributors may be used to endorse or promote
2756276d05SJonathan Nieder     products derived from this software without specific prior
2856276d05SJonathan Nieder     written permission.
2956276d05SJonathan Nieder
3056276d05SJonathan Nieder   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
3156276d05SJonathan Nieder   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
3256276d05SJonathan Nieder   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
3356276d05SJonathan Nieder   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3456276d05SJonathan Nieder   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
3556276d05SJonathan Nieder   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3656276d05SJonathan Nieder   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
3756276d05SJonathan Nieder   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
3856276d05SJonathan Nieder   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
3956276d05SJonathan Nieder   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
4056276d05SJonathan Nieder   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
4156276d05SJonathan Nieder   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
4256276d05SJonathan Nieder   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4356276d05SJonathan Nieder-->
4456276d05SJonathan Nieder
4556276d05SJonathan Nieder<project xmlns="http://maven.apache.org/POM/4.0.0"
4656276d05SJonathan Nieder    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4756276d05SJonathan Nieder    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4856276d05SJonathan Nieder  <modelVersion>4.0.0</modelVersion>
4956276d05SJonathan Nieder
5056276d05SJonathan Nieder  <parent>
5156276d05SJonathan Nieder    <groupId>org.eclipse.jgit</groupId>
5256276d05SJonathan Nieder    <artifactId>org.eclipse.jgit-parent</artifactId>
536664bc6fSMatthias Sohn    <version>4.2.0-SNAPSHOT</version>
5456276d05SJonathan Nieder  </parent>
5556276d05SJonathan Nieder
5656276d05SJonathan Nieder  <artifactId>org.eclipse.jgit.archive</artifactId>
5756276d05SJonathan Nieder  <name>JGit Archive Formats</name>
5856276d05SJonathan Nieder
5956276d05SJonathan Nieder  <description>
6056276d05SJonathan Nieder    Support for archiving a Git tree in formats such as zip and tar.
6156276d05SJonathan Nieder    This is a separate bundle from org.eclipse.jgit to avoid a
6256276d05SJonathan Nieder    dependency by the latter on commons-compress.
6356276d05SJonathan Nieder  </description>
6456276d05SJonathan Nieder
6556276d05SJonathan Nieder  <properties>
6656276d05SJonathan Nieder    <translate-qualifier/>
6756276d05SJonathan Nieder  </properties>
6856276d05SJonathan Nieder
6956276d05SJonathan Nieder  <dependencies>
7056276d05SJonathan Nieder    <dependency>
7156276d05SJonathan Nieder      <groupId>org.apache.commons</groupId>
7256276d05SJonathan Nieder      <artifactId>commons-compress</artifactId>
7356276d05SJonathan Nieder    </dependency>
7456276d05SJonathan Nieder
7556276d05SJonathan Nieder    <dependency>
7656276d05SJonathan Nieder      <groupId>org.eclipse.jgit</groupId>
7756276d05SJonathan Nieder      <artifactId>org.eclipse.jgit</artifactId>
7856276d05SJonathan Nieder      <version>${project.version}</version>
7956276d05SJonathan Nieder    </dependency>
8056276d05SJonathan Nieder
8156276d05SJonathan Nieder    <dependency>
8256276d05SJonathan Nieder      <groupId>org.osgi</groupId>
8356276d05SJonathan Nieder      <artifactId>org.osgi.core</artifactId>
8456276d05SJonathan Nieder    </dependency>
8556276d05SJonathan Nieder  </dependencies>
8656276d05SJonathan Nieder
8756276d05SJonathan Nieder  <build>
8856276d05SJonathan Nieder    <sourceDirectory>src/</sourceDirectory>
8956276d05SJonathan Nieder
9056276d05SJonathan Nieder    <resources>
9156276d05SJonathan Nieder      <resource>
9256276d05SJonathan Nieder        <directory>.</directory>
9356276d05SJonathan Nieder        <includes>
9456276d05SJonathan Nieder          <include>plugin.properties</include>
9556276d05SJonathan Nieder          <include>about.html</include>
9656276d05SJonathan Nieder        </includes>
9756276d05SJonathan Nieder      </resource>
9856276d05SJonathan Nieder    </resources>
9956276d05SJonathan Nieder
10056276d05SJonathan Nieder    <plugins>
10156276d05SJonathan Nieder      <plugin>
10256276d05SJonathan Nieder        <artifactId>maven-jar-plugin</artifactId>
10356276d05SJonathan Nieder        <configuration>
10456276d05SJonathan Nieder          <archive>
10556276d05SJonathan Nieder            <manifestFile>${bundle-manifest}</manifestFile>
10656276d05SJonathan Nieder          </archive>
10756276d05SJonathan Nieder        </configuration>
10856276d05SJonathan Nieder      </plugin>
109*100179a1SMatthias Sohn
110*100179a1SMatthias Sohn      <plugin>
111*100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
112*100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
113*100179a1SMatthias Sohn          <version>${japicmp-version}</version>
114*100179a1SMatthias Sohn          <configuration>
115*100179a1SMatthias Sohn              <oldVersion>
116*100179a1SMatthias Sohn                  <dependency>
117*100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
118*100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
119*100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
120*100179a1SMatthias Sohn                  </dependency>
121*100179a1SMatthias Sohn              </oldVersion>
122*100179a1SMatthias Sohn              <newVersion>
123*100179a1SMatthias Sohn                  <file>
124*100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
125*100179a1SMatthias Sohn                  </file>
126*100179a1SMatthias Sohn              </newVersion>
127*100179a1SMatthias Sohn              <parameter>
128*100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
129*100179a1SMatthias Sohn                  <includes>
130*100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
131*100179a1SMatthias Sohn                  </includes>
132*100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
133*100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
134*100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
135*100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
136*100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
137*100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
138*100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
139*100179a1SMatthias Sohn              </parameter>
140*100179a1SMatthias Sohn              <skip>false</skip>
141*100179a1SMatthias Sohn          </configuration>
142*100179a1SMatthias Sohn          <executions>
143*100179a1SMatthias Sohn            <execution>
144*100179a1SMatthias Sohn             <phase>verify</phase>
145*100179a1SMatthias Sohn             <goals>
146*100179a1SMatthias Sohn               <goal>cmp</goal>
147*100179a1SMatthias Sohn             </goals>
148*100179a1SMatthias Sohn          </execution>
149*100179a1SMatthias Sohn        </executions>
150*100179a1SMatthias Sohn      </plugin>
15156276d05SJonathan Nieder    </plugins>
15256276d05SJonathan Nieder  </build>
153*100179a1SMatthias Sohn
154*100179a1SMatthias Sohn  <reporting>
155*100179a1SMatthias Sohn    <plugins>
156*100179a1SMatthias Sohn      <plugin>
157*100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
158*100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
159*100179a1SMatthias Sohn          <version>${japicmp-version}</version>
160*100179a1SMatthias Sohn          <reportSets>
161*100179a1SMatthias Sohn              <reportSet>
162*100179a1SMatthias Sohn                  <reports>
163*100179a1SMatthias Sohn                      <report>cmp-report</report>
164*100179a1SMatthias Sohn                  </reports>
165*100179a1SMatthias Sohn              </reportSet>
166*100179a1SMatthias Sohn          </reportSets>
167*100179a1SMatthias Sohn          <configuration>
168*100179a1SMatthias Sohn              <oldVersion>
169*100179a1SMatthias Sohn                  <dependency>
170*100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
171*100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
172*100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
173*100179a1SMatthias Sohn                  </dependency>
174*100179a1SMatthias Sohn              </oldVersion>
175*100179a1SMatthias Sohn              <newVersion>
176*100179a1SMatthias Sohn                  <file>
177*100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
178*100179a1SMatthias Sohn                  </file>
179*100179a1SMatthias Sohn              </newVersion>
180*100179a1SMatthias Sohn              <parameter>
181*100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
182*100179a1SMatthias Sohn                  <includes>
183*100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
184*100179a1SMatthias Sohn                  </includes>
185*100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
186*100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
187*100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
188*100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
189*100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
190*100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
191*100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
192*100179a1SMatthias Sohn              </parameter>
193*100179a1SMatthias Sohn              <skip>false</skip>
194*100179a1SMatthias Sohn          </configuration>
195*100179a1SMatthias Sohn      </plugin>
196*100179a1SMatthias Sohn    </plugins>
197*100179a1SMatthias Sohn  </reporting>
19856276d05SJonathan Nieder</project>
199