blob: d02cafbbe9a8a2709da86e1dd89f4372335d28ac [file] [log] [blame]
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Shawn O. Pearce5e33a1d2010-01-06 12:26:54 -08003 Copyright (C) 2009-2010, Google Inc.
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -07004 and other copyright owners as documented in the project's IP log.
5
6 This program and the accompanying materials are made available
7 under the terms of the Eclipse Distribution License v1.0 which
8 accompanies this distribution, is reproduced below, and is
9 available at http://www.eclipse.org/org/documents/edl-v10.php
10
11 All rights reserved.
12
13 Redistribution and use in source and binary forms, with or
14 without modification, are permitted provided that the following
15 conditions are met:
16
17 - Redistributions of source code must retain the above copyright
18 notice, this list of conditions and the following disclaimer.
19
20 - Redistributions in binary form must reproduce the above
21 copyright notice, this list of conditions and the following
22 disclaimer in the documentation and/or other materials provided
23 with the distribution.
24
25 - Neither the name of the Eclipse Foundation, Inc. nor the
26 names of its contributors may be used to endorse or promote
27 products derived from this software without specific prior
28 written permission.
29
30 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31 CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43-->
44
45<project xmlns="http://maven.apache.org/POM/4.0.0"
46 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
47 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
48 <modelVersion>4.0.0</modelVersion>
49
50 <groupId>org.eclipse.jgit</groupId>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -080051 <artifactId>org.eclipse.jgit-parent</artifactId>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -070052 <packaging>pom</packaging>
53 <version>0.6.0-SNAPSHOT</version>
54
55 <name>JGit - Parent</name>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -080056 <url>${jgit-url}</url>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -070057
58 <description>
59 Pure Java implementation of Git
60 </description>
61
62 <mailingLists>
63 <mailingList>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -080064 <name>jgit-dev Mailing List</name>
65 <post>jgit-dev@eclipse.org</post>
66 <subscribe>https://dev.eclipse.org/mailman/listinfo/jgit-dev</subscribe>
67 <unsubscribe>https://dev.eclipse.org/mailman/listinfo/jgit-dev</unsubscribe>
68 <archive>http://dev.eclipse.org/mhonarc/lists/jgit-dev</archive>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -070069 </mailingList>
70
71 <mailingList>
72 <name>GIT Mailing List</name>
73 <post>git@vger.kernel.org</post>
74 <archive>http://marc.info/?l=git</archive>
75 </mailingList>
76 </mailingLists>
77
78 <issueManagement>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -080079 <url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;component=JGit;product=JGit;classification=Technology</url>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -070080 <system>Bugzilla</system>
81 </issueManagement>
82
83 <licenses>
84 <license>
85 <name>Eclipse Distribution License (New BSD License)</name>
86 <comments>
87 All rights reserved.
88
89 Redistribution and use in source and binary forms, with or
90 without modification, are permitted provided that the following
91 conditions are met:
92
93 - Redistributions of source code must retain the above copyright
94 notice, this list of conditions and the following disclaimer.
95
96 - Redistributions in binary form must reproduce the above
97 copyright notice, this list of conditions and the following
98 disclaimer in the documentation and/or other materials provided
99 with the distribution.
100
101 - Neither the name of the Eclipse Foundation, Inc. nor the
102 names of its contributors may be used to endorse or promote
103 products derived from this software without specific prior
104 written permission.
105
106 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
107 CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
108 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
109 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
110 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
111 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
112 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
113 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
114 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
115 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
116 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
117 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
118 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
119 </comments>
120 </license>
121 </licenses>
122
123 <properties>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -0800124 <jgit-url>http://www.eclipse.org/jgit/</jgit-url>
125 <jgit-copyright>Copyright (c) 2005, 2009 Shawn Pearce, Robin Rosenberg, et.al.</jgit-copyright>
126
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700127 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
128 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Igor Fedorenko96c7f752009-12-05 01:07:42 -0500129
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -0800130 <jsch-CQ>CQ 3493</jsch-CQ>
131 <jsch-version>0.1.41</jsch-version>
132
133 <junit-CQ>CQ 3589</junit-CQ>
134 <junit-version>3.8.2</junit-version>
135
136 <args4j-CQ>CQ 3454</args4j-CQ>
137 <args4j-version>2.0.12</args4j-version>
Shawn O. Pearce5e33a1d2010-01-06 12:26:54 -0800138
139 <servlet-api-CQ>CQ 3565</servlet-api-CQ>
140 <servlet-api-version>2.5</servlet-api-version>
Shawn O. Pearcef5eb0d92010-01-12 12:30:42 -0800141
142 <jetty-version>7.0.1.v20091125</jetty-version>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700143 </properties>
144
145 <build>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -0800146 <pluginManagement>
147 <plugins>
148 <plugin>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -0800149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-jar-plugin</artifactId>
151 <configuration>
152 <archive>
153 <manifestEntries>
154 <Implementation-Title>JGit ${project.artifactId}</Implementation-Title>
155 <Implementation-Version>${project.version}</Implementation-Version>
156 <Implementation-Vendor>Eclipse.org - JGit</Implementation-Vendor>
157 <Implementation-Vendor-Id>org.eclipse.jgit</Implementation-Vendor-Id>
158 <Implementation-Vendor-URL>${jgit-url}</Implementation-Vendor-URL>
159 </manifestEntries>
160 </archive>
161 </configuration>
162 </plugin>
163
164 <plugin>
165 <artifactId>maven-compiler-plugin</artifactId>
166 <version>2.0.2</version>
167 </plugin>
168
169 <plugin>
170 <artifactId>maven-clean-plugin</artifactId>
171 <version>2.2</version>
172 </plugin>
173
174 <plugin>
175 <groupId>org.apache.maven.plugins</groupId>
176 <artifactId>maven-shade-plugin</artifactId>
177 <version>1.2</version>
178 </plugin>
179
180 <plugin>
181 <groupId>org.apache.maven.plugins</groupId>
182 <artifactId>maven-antrun-plugin</artifactId>
183 <version>1.3</version>
184 </plugin>
185
186 <plugin>
187 <groupId>org.apache.maven.plugins</groupId>
188 <artifactId>maven-dependency-plugin</artifactId>
189 <version>2.1</version>
190 </plugin>
191
192 <plugin>
193 <groupId>org.codehaus.mojo</groupId>
194 <artifactId>build-helper-maven-plugin</artifactId>
195 <version>1.3</version>
196 </plugin>
197 </plugins>
198 </pluginManagement>
199
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700200 <plugins>
201 <plugin>
202 <artifactId>maven-compiler-plugin</artifactId>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700203 <configuration>
204 <source>1.5</source>
205 <target>1.5</target>
206 <encoding>UTF-8</encoding>
207 </configuration>
208 </plugin>
209
210 <plugin>
211 <groupId>org.apache.maven.plugins</groupId>
212 <artifactId>maven-source-plugin</artifactId>
213 <executions>
214 <execution>
215 <id>attach-sources</id>
216 <goals>
217 <goal>jar</goal>
218 </goals>
219 </execution>
220 </executions>
221 </plugin>
222
223 <plugin>
224 <groupId>org.apache.maven.plugins</groupId>
225 <artifactId>maven-javadoc-plugin</artifactId>
226 <configuration>
227 <encoding>${project.build.sourceEncoding}</encoding>
228 <quiet>true</quiet>
229 <links>
230 <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
231 </links>
232 </configuration>
233 <executions>
234 <execution>
235 <id>attach-javadocs</id>
236 <goals>
237 <goal>jar</goal>
238 </goals>
239 </execution>
240 </executions>
241 </plugin>
242 </plugins>
243 </build>
244
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700245 <dependencyManagement>
246 <dependencies>
247 <dependency>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700248 <groupId>com.jcraft</groupId>
249 <artifactId>jsch</artifactId>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -0800250 <version>${jsch-version}</version>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700251 </dependency>
252
253 <dependency>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700254 <groupId>args4j</groupId>
255 <artifactId>args4j</artifactId>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -0800256 <version>${args4j-version}</version>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700257 </dependency>
258
259 <dependency>
260 <groupId>junit</groupId>
261 <artifactId>junit</artifactId>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -0800262 <version>${junit-version}</version>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700263 </dependency>
Shawn O. Pearce5e33a1d2010-01-06 12:26:54 -0800264
265 <dependency>
266 <groupId>javax.servlet</groupId>
267 <artifactId>servlet-api</artifactId>
268 <version>${servlet-api-version}</version>
269 </dependency>
Shawn O. Pearcef5eb0d92010-01-12 12:30:42 -0800270
271 <dependency>
272 <groupId>org.eclipse.jetty</groupId>
273 <artifactId>jetty-servlet</artifactId>
274 <version>${jetty-version}</version>
275 </dependency>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700276 </dependencies>
277 </dependencyManagement>
278
279 <distributionManagement>
280 <snapshotRepository>
281 <id>jgit-maven-snapshot</id>
282 <name>JGit Maven Repository</name>
283 <url>dav:https://egit.googlecode.com/svn/maven/</url>
284 <uniqueVersion>true</uniqueVersion>
285 </snapshotRepository>
286 </distributionManagement>
287
Shawn O. Pearce7e8dc532009-10-31 19:39:18 -0700288 <profiles>
289 <!-- Set -Djgit.java6.skip=true to compile with only Java 5 -->
290 <profile>
Shawn O. Pearcefc5fc702009-12-28 12:01:19 -0800291 <id>jgit.java6</id>
Shawn O. Pearce7e8dc532009-10-31 19:39:18 -0700292 <activation>
293 <property>
294 <name>!jgit.java6.skip</name>
295 </property>
296 </activation>
297 <modules>
298 <module>org.eclipse.jgit.console</module>
299 </modules>
300 </profile>
301 </profiles>
302
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700303 <modules>
304 <module>org.eclipse.jgit</module>
305 <module>org.eclipse.jgit.ui</module>
Shawn O. Pearce5e33a1d2010-01-06 12:26:54 -0800306 <module>org.eclipse.jgit.http.server</module>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700307 <module>org.eclipse.jgit.pgm</module>
Shawn O. Pearce49aac322009-10-02 18:08:56 -0700308 <module>org.eclipse.jgit.junit</module>
Shawn O. Pearcef5eb0d92010-01-12 12:30:42 -0800309
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700310 <module>org.eclipse.jgit.test</module>
Shawn O. Pearcef5eb0d92010-01-12 12:30:42 -0800311 <module>org.eclipse.jgit.http.test</module>
Shawn O. Pearcedad52ba2009-10-31 18:07:26 -0700312 </modules>
313</project>