xref: /JGit/org.eclipse.jgit.archive/pom.xml (revision eb7a93bb2a01206e9d71c59963be2a7a9adf0411)
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>
5375b33019SMatthias Sohn    <version>4.5.0-SNAPSHOT</version>
5456276d05SJonathan Nieder  </parent>
5556276d05SJonathan Nieder
5656276d05SJonathan Nieder  <artifactId>org.eclipse.jgit.archive</artifactId>
57*eb7a93bbSDavid Pursehouse  <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>
109100179a1SMatthias Sohn
110100179a1SMatthias Sohn      <plugin>
111100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
112100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
113100179a1SMatthias Sohn          <version>${japicmp-version}</version>
114100179a1SMatthias Sohn          <configuration>
115100179a1SMatthias Sohn              <oldVersion>
116100179a1SMatthias Sohn                  <dependency>
117100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
118100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
119100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
120100179a1SMatthias Sohn                  </dependency>
121100179a1SMatthias Sohn              </oldVersion>
122100179a1SMatthias Sohn              <newVersion>
123100179a1SMatthias Sohn                  <file>
124100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
125100179a1SMatthias Sohn                  </file>
126100179a1SMatthias Sohn              </newVersion>
127100179a1SMatthias Sohn              <parameter>
128100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
129100179a1SMatthias Sohn                  <includes>
130100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
131100179a1SMatthias Sohn                  </includes>
132100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
133100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
134100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
135100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
136100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
137100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
138100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
139100179a1SMatthias Sohn              </parameter>
140100179a1SMatthias Sohn              <skip>false</skip>
141100179a1SMatthias Sohn          </configuration>
142100179a1SMatthias Sohn          <executions>
143100179a1SMatthias Sohn            <execution>
144100179a1SMatthias Sohn             <phase>verify</phase>
145100179a1SMatthias Sohn             <goals>
146100179a1SMatthias Sohn               <goal>cmp</goal>
147100179a1SMatthias Sohn             </goals>
148100179a1SMatthias Sohn          </execution>
149100179a1SMatthias Sohn        </executions>
150100179a1SMatthias Sohn      </plugin>
15156276d05SJonathan Nieder    </plugins>
15256276d05SJonathan Nieder  </build>
153100179a1SMatthias Sohn
154100179a1SMatthias Sohn  <reporting>
155100179a1SMatthias Sohn    <plugins>
156100179a1SMatthias Sohn      <plugin>
157100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
158100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
159100179a1SMatthias Sohn          <version>${japicmp-version}</version>
160100179a1SMatthias Sohn          <reportSets>
161100179a1SMatthias Sohn              <reportSet>
162100179a1SMatthias Sohn                  <reports>
163100179a1SMatthias Sohn                      <report>cmp-report</report>
164100179a1SMatthias Sohn                  </reports>
165100179a1SMatthias Sohn              </reportSet>
166100179a1SMatthias Sohn          </reportSets>
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      </plugin>
196100179a1SMatthias Sohn    </plugins>
197100179a1SMatthias Sohn  </reporting>
19856276d05SJonathan Nieder</project>
199