JGit 0.8.4
[jgit.git] / org.eclipse.jgit / pom.xml
blob4929d7433238b476d8e86f5aebebcb1fd92cb87d
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2009, Google Inc.
4    Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com>
5    Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com>
6    Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com>
7    and other copyright owners as documented in the project's IP log.
9    This program and the accompanying materials are made available
10    under the terms of the Eclipse Distribution License v1.0 which
11    accompanies this distribution, is reproduced below, and is
12    available at http://www.eclipse.org/org/documents/edl-v10.php
14    All rights reserved.
16    Redistribution and use in source and binary forms, with or
17    without modification, are permitted provided that the following
18    conditions are met:
20    - Redistributions of source code must retain the above copyright
21      notice, this list of conditions and the following disclaimer.
23    - Redistributions in binary form must reproduce the above
24      copyright notice, this list of conditions and the following
25      disclaimer in the documentation and/or other materials provided
26      with the distribution.
28    - Neither the name of the Eclipse Foundation, Inc. nor the
29      names of its contributors may be used to endorse or promote
30      products derived from this software without specific prior
31      written permission.
33    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
34    CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
35    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
36    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
38    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
40    NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
41    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
42    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
43    STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
44    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
45    ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46 -->
48 <project xmlns="http://maven.apache.org/POM/4.0.0"
49     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
50     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
51   <modelVersion>4.0.0</modelVersion>
53   <parent>
54     <groupId>org.eclipse.jgit</groupId>
55     <artifactId>org.eclipse.jgit-parent</artifactId>
56     <version>0.8.4</version>
57   </parent>
59   <artifactId>org.eclipse.jgit</artifactId>
60   <name>JGit - Core</name>
62   <description>
63     Repository access and algorithms
64   </description>
66   <properties>
67     <translate-qualifier/>
68   </properties>
70   <dependencies>
71     <dependency>
72       <groupId>com.jcraft</groupId>
73       <artifactId>jsch</artifactId>
74     </dependency>
75   </dependencies>
77   <build>
78     <sourceDirectory>src/</sourceDirectory>
80     <resources>
81       <resource>
82         <directory>.</directory>
83         <includes>
84           <include>plugin.properties</include>
85           <include>about.html</include>
86         </includes>
87       </resource>
88       <resource>
89         <directory>resources/</directory>
90       </resource>
91     </resources>
93     <plugins>
94       <plugin>
95         <artifactId>maven-jar-plugin</artifactId>
96         <configuration>
97           <archive>
98             <manifestFile>${bundle-manifest}</manifestFile>
99           </archive>
100         </configuration>
101       </plugin>
102     </plugins>
103   </build>
104 </project>