xref: /JGit/org.eclipse.jgit.archive/pom.xml (revision 56276d053f44209f25951d3acfba226c563a81f0)
1*56276d05SJonathan Nieder<?xml version="1.0" encoding="UTF-8"?>
2*56276d05SJonathan Nieder<!--
3*56276d05SJonathan Nieder   Copyright (C) 2013, Google Inc.
4*56276d05SJonathan Nieder   and other copyright owners as documented in the project's IP log.
5*56276d05SJonathan Nieder
6*56276d05SJonathan Nieder   This program and the accompanying materials are made available
7*56276d05SJonathan Nieder   under the terms of the Eclipse Distribution License v1.0 which
8*56276d05SJonathan Nieder   accompanies this distribution, is reproduced below, and is
9*56276d05SJonathan Nieder   available at http://www.eclipse.org/org/documents/edl-v10.php
10*56276d05SJonathan Nieder
11*56276d05SJonathan Nieder   All rights reserved.
12*56276d05SJonathan Nieder
13*56276d05SJonathan Nieder   Redistribution and use in source and binary forms, with or
14*56276d05SJonathan Nieder   without modification, are permitted provided that the following
15*56276d05SJonathan Nieder   conditions are met:
16*56276d05SJonathan Nieder
17*56276d05SJonathan Nieder   - Redistributions of source code must retain the above copyright
18*56276d05SJonathan Nieder     notice, this list of conditions and the following disclaimer.
19*56276d05SJonathan Nieder
20*56276d05SJonathan Nieder   - Redistributions in binary form must reproduce the above
21*56276d05SJonathan Nieder     copyright notice, this list of conditions and the following
22*56276d05SJonathan Nieder     disclaimer in the documentation and/or other materials provided
23*56276d05SJonathan Nieder     with the distribution.
24*56276d05SJonathan Nieder
25*56276d05SJonathan Nieder   - Neither the name of the Eclipse Foundation, Inc. nor the
26*56276d05SJonathan Nieder     names of its contributors may be used to endorse or promote
27*56276d05SJonathan Nieder     products derived from this software without specific prior
28*56276d05SJonathan Nieder     written permission.
29*56276d05SJonathan Nieder
30*56276d05SJonathan Nieder   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31*56276d05SJonathan Nieder   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32*56276d05SJonathan Nieder   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33*56276d05SJonathan Nieder   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34*56276d05SJonathan Nieder   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35*56276d05SJonathan Nieder   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36*56276d05SJonathan Nieder   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37*56276d05SJonathan Nieder   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38*56276d05SJonathan Nieder   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39*56276d05SJonathan Nieder   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40*56276d05SJonathan Nieder   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41*56276d05SJonathan Nieder   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42*56276d05SJonathan Nieder   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43*56276d05SJonathan Nieder-->
44*56276d05SJonathan Nieder
45*56276d05SJonathan Nieder<project xmlns="http://maven.apache.org/POM/4.0.0"
46*56276d05SJonathan Nieder    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
47*56276d05SJonathan Nieder    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
48*56276d05SJonathan Nieder  <modelVersion>4.0.0</modelVersion>
49*56276d05SJonathan Nieder
50*56276d05SJonathan Nieder  <parent>
51*56276d05SJonathan Nieder    <groupId>org.eclipse.jgit</groupId>
52*56276d05SJonathan Nieder    <artifactId>org.eclipse.jgit-parent</artifactId>
53*56276d05SJonathan Nieder    <version>3.0.0-SNAPSHOT</version>
54*56276d05SJonathan Nieder  </parent>
55*56276d05SJonathan Nieder
56*56276d05SJonathan Nieder  <artifactId>org.eclipse.jgit.archive</artifactId>
57*56276d05SJonathan Nieder  <name>JGit Archive Formats</name>
58*56276d05SJonathan Nieder
59*56276d05SJonathan Nieder  <description>
60*56276d05SJonathan Nieder    Support for archiving a Git tree in formats such as zip and tar.
61*56276d05SJonathan Nieder    This is a separate bundle from org.eclipse.jgit to avoid a
62*56276d05SJonathan Nieder    dependency by the latter on commons-compress.
63*56276d05SJonathan Nieder  </description>
64*56276d05SJonathan Nieder
65*56276d05SJonathan Nieder  <properties>
66*56276d05SJonathan Nieder    <translate-qualifier/>
67*56276d05SJonathan Nieder  </properties>
68*56276d05SJonathan Nieder
69*56276d05SJonathan Nieder  <dependencies>
70*56276d05SJonathan Nieder    <dependency>
71*56276d05SJonathan Nieder      <groupId>org.apache.commons</groupId>
72*56276d05SJonathan Nieder      <artifactId>commons-compress</artifactId>
73*56276d05SJonathan Nieder    </dependency>
74*56276d05SJonathan Nieder
75*56276d05SJonathan Nieder    <dependency>
76*56276d05SJonathan Nieder      <groupId>org.eclipse.jgit</groupId>
77*56276d05SJonathan Nieder      <artifactId>org.eclipse.jgit</artifactId>
78*56276d05SJonathan Nieder      <version>${project.version}</version>
79*56276d05SJonathan Nieder    </dependency>
80*56276d05SJonathan Nieder
81*56276d05SJonathan Nieder    <dependency>
82*56276d05SJonathan Nieder      <groupId>org.osgi</groupId>
83*56276d05SJonathan Nieder      <artifactId>org.osgi.core</artifactId>
84*56276d05SJonathan Nieder    </dependency>
85*56276d05SJonathan Nieder  </dependencies>
86*56276d05SJonathan Nieder
87*56276d05SJonathan Nieder  <build>
88*56276d05SJonathan Nieder    <sourceDirectory>src/</sourceDirectory>
89*56276d05SJonathan Nieder
90*56276d05SJonathan Nieder    <resources>
91*56276d05SJonathan Nieder      <resource>
92*56276d05SJonathan Nieder        <directory>.</directory>
93*56276d05SJonathan Nieder        <includes>
94*56276d05SJonathan Nieder          <include>plugin.properties</include>
95*56276d05SJonathan Nieder          <include>about.html</include>
96*56276d05SJonathan Nieder        </includes>
97*56276d05SJonathan Nieder      </resource>
98*56276d05SJonathan Nieder    </resources>
99*56276d05SJonathan Nieder
100*56276d05SJonathan Nieder    <plugins>
101*56276d05SJonathan Nieder      <plugin>
102*56276d05SJonathan Nieder        <artifactId>maven-jar-plugin</artifactId>
103*56276d05SJonathan Nieder        <configuration>
104*56276d05SJonathan Nieder          <archive>
105*56276d05SJonathan Nieder            <manifestFile>${bundle-manifest}</manifestFile>
106*56276d05SJonathan Nieder          </archive>
107*56276d05SJonathan Nieder        </configuration>
108*56276d05SJonathan Nieder      </plugin>
109*56276d05SJonathan Nieder    </plugins>
110*56276d05SJonathan Nieder  </build>
111*56276d05SJonathan Nieder</project>
112