Merge "Release ObjectWalk after use"
[egit/eclipse.git] / pom.xml
blob242533d338498b9631dd02540d1364500a5c1332
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com>
4    Copyright (C) 2010, Chris Aniszczyk <caniszczyk@gmail.com>
5    Copyright (C) 2011, Matthias Sohn <matthias.sohn@sap.com>
7    All rights reserved. This program and the accompanying materials
8    are made available under the terms of the Eclipse Public License v1.0
9    which accompanies this distribution, and is available at
10    http://www.eclipse.org/legal/epl-v10.html
11 -->
13 <project xmlns="http://maven.apache.org/POM/4.0.0"
14     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
16   <modelVersion>4.0.0</modelVersion>
18   <prerequisites>
19     <maven>3.0</maven>
20   </prerequisites>
22   <groupId>org.eclipse.egit</groupId>
23   <artifactId>egit-parent</artifactId>
24   <version>1.2.0-SNAPSHOT</version>
25   <packaging>pom</packaging>
27   <name>EGit Parent</name>
29   <mailingLists>
30     <mailingList>
31       <name>egit-dev Mailing List</name>
32       <post>egit-dev@eclipse.org</post>
33       <subscribe>https://dev.eclipse.org/mailman/listinfo/egit-dev</subscribe>
34       <unsubscribe>https://dev.eclipse.org/mailman/listinfo/egit-dev</unsubscribe>
35       <archive>http://dev.eclipse.org/mhonarc/lists/egit-dev</archive>
36     </mailingList>
38     <mailingList>
39       <name>GIT Mailing List</name>
40       <post>git@vger.kernel.org</post>
41       <archive>http://marc.info/?l=git</archive>
42     </mailingList>
43   </mailingLists>
45   <issueManagement>
46     <url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;product=EGit;classification=Technology</url>
47     <system>Bugzilla</system>
48   </issueManagement>
50   <licenses>
51     <license>
52       <name>Eclipse Public License v1.0</name>
53       <comments>
54        All rights reserved.
56        This program and the accompanying materials are made
57        available under the terms of the Eclipse Public License v1.0
58        which accompanies this distribution, and is available at
59        http://www.eclipse.org/legal/epl-v10.htm
60       </comments>
61     </license>
62   </licenses>
64   <properties>
65     <egit-version>1.2.0-SNAPSHOT</egit-version>
66     <tycho-version>0.12.0</tycho-version>
67     <mockito-version>1.8.4</mockito-version>
68     <junit-version>4.8.1</junit-version>
69     <jgit-site>file:/${basedir}/../../jgit/org.eclipse.jgit.packaging/org.eclipse.jgit.updatesite/target/site</jgit-site>
70     <jetty-site>http://download.eclipse.org/jetty/7.1.6.v20100715/repository/</jetty-site>
71     <wikitext-site>http://download.eclipse.org/tools/mylyn/update/weekly</wikitext-site>
72     <orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository</orbit-site>
73     <signer-input-directory>/home/data/httpd/download-staging.priv/egit</signer-input-directory>
74     <download-publish-path>/home/data/httpd/download.eclipse.org/egit/updates-nightly</download-publish-path>
75   </properties>
77   <profiles>
78     <profile>
79       <id>platform-galileo</id>
80       <activation>
81         <activeByDefault>true</activeByDefault>
82         <property>
83           <name>platform-version-name</name>
84           <value>galileo</value>
85         </property>
86       </activation>
87       <properties>
88         <eclipse-site>http://download.eclipse.org/releases/galileo</eclipse-site>
89         <platform-version>[3.5,3.6)</platform-version>
90         <swtbot-site>http://download.eclipse.org/technology/swtbot/galileo/dev-build/update-site</swtbot-site>
91       </properties>
92     </profile>
93     <profile>
94       <id>platform-helios</id>
95       <activation>
96         <property>
97           <name>platform-version-name</name>
98           <value>helios</value>
99         </property>
100       </activation>
101       <properties>
102         <eclipse-site>http://download.eclipse.org/releases/helios</eclipse-site>
103         <platform-version>[3.6,3.7)</platform-version>
104         <swtbot-site>http://download.eclipse.org/technology/swtbot/helios/dev-build/update-site</swtbot-site>
105       </properties>
106     </profile>
107     <profile>
108       <id>platform-indigo</id>
109       <activation>
110         <property>
111           <name>platform-version-name</name>
112           <value>indigo</value>
113         </property>
114       </activation>
115       <properties>
116         <eclipse-site>http://download.eclipse.org/releases/indigo</eclipse-site>
117         <platform-version>[3.7,3.8)</platform-version>
118         <swtbot-site>http://download.eclipse.org/technology/swtbot/helios/dev-build/update-site</swtbot-site>
119       </properties>
120     </profile>
121     <profile>
122       <id>static-checks</id>
123       <build>
124         <plugins>
125           <plugin>
126             <groupId>org.codehaus.mojo</groupId>
127             <artifactId>findbugs-maven-plugin</artifactId>
128           </plugin>
129           <plugin>
130             <groupId>org.apache.maven.plugins</groupId>
131             <artifactId>maven-pmd-plugin</artifactId>
132           </plugin>
133         </plugins>
134       </build>
135     </profile>
136   </profiles>
138   <modules>
139     <module>org.eclipse.egit</module>
140     <module>org.eclipse.egit.core</module>
141     <module>org.eclipse.egit.ui</module>
143     <module>org.eclipse.egit.mylyn.ui</module>
144     <module>org.eclipse.egit.mylyn-feature</module>
146     <module>org.eclipse.egit.psf-feature</module>
148     <module>org.eclipse.egit.doc</module>
149     <module>org.eclipse.egit-feature</module>
150     <module>org.eclipse.egit-updatesite</module>
152     <module>org.eclipse.egit.core.test</module>
153     <module>org.eclipse.egit.ui.test</module>
154     <module>org.eclipse.egit.mylyn.ui.test</module>
156     <module>org.eclipse.egit.source-feature</module>
157    </modules>
159   <pluginRepositories>
160     <pluginRepository>
161       <id>maven.eclipse.org</id>
162       <url>http://maven.eclipse.org/nexus/content/groups/public/</url>
163     </pluginRepository>
164   </pluginRepositories>
166   <repositories>
167     <repository>
168       <id>jgit</id>
169       <layout>p2</layout>
170       <url>${jgit-site}</url>
171     </repository>
172     <repository>
173       <id>eclipse-platform</id>
174       <layout>p2</layout>
175       <url>${eclipse-site}</url>
176     </repository>
177     <repository>
178       <id>swtbot</id>
179       <layout>p2</layout>
180       <url>${swtbot-site}</url>
181     </repository>
182     <repository>
183       <id>wikitext</id>
184       <layout>p2</layout>
185       <url>${wikitext-site}</url>
186     </repository>
187     <repository>
188       <id>jetty</id>
189       <layout>p2</layout>
190       <url>${jetty-site}</url>
191     </repository>
192     <repository>
193       <id>orbit</id>
194       <layout>p2</layout>
195       <url>${orbit-site}</url>
196     </repository>
197   </repositories>
199   <build>
200     <plugins>
201       <plugin>
202         <groupId>org.eclipse.tycho</groupId>
203         <artifactId>tycho-maven-plugin</artifactId>
204         <version>${tycho-version}</version>
205         <extensions>true</extensions>
206       </plugin>
207       <plugin>
208         <groupId>org.eclipse.tycho</groupId>
209         <artifactId>target-platform-configuration</artifactId>
210         <version>${tycho-version}</version>
211         <configuration>
212           <resolver>p2</resolver>
213           <pomDependencies>consider</pomDependencies>
214           <environments>
215             <environment>
216               <os>linux</os>
217               <ws>gtk</ws>
218               <arch>x86</arch>
219             </environment>
220             <environment>
221               <os>linux</os>
222               <ws>gtk</ws>
223               <arch>x86_64</arch>
224             </environment>
225             <environment>
226               <os>win32</os>
227               <ws>win32</ws>
228               <arch>x86</arch>
229             </environment>
230             <environment>
231               <os>win32</os>
232               <ws>win32</ws>
233               <arch>x86_64</arch>
234             </environment>
235             <environment>
236               <os>macosx</os>
237               <ws>cocoa</ws>
238               <arch>x86_64</arch>
239             </environment>
240           </environments>
241         </configuration>
242       </plugin>
243     </plugins>
244     <pluginManagement>
245       <plugins>
246         <plugin>
247           <groupId>org.eclipse.tycho</groupId>
248           <artifactId>tycho-compiler-plugin</artifactId>
249           <version>${tycho-version}</version>
250           <configuration>
251             <encoding>UTF-8</encoding>
252           </configuration>
253         </plugin>
254         <plugin>
255           <groupId>org.eclipse.tycho</groupId>
256           <artifactId>tycho-source-plugin</artifactId>
257           <version>${tycho-version}</version>
258           <executions>
259             <execution>
260               <id>attach-source</id>
261               <goals>
262                 <goal>plugin-source</goal>
263               </goals>
264             </execution>
265           </executions>
266         </plugin>
267         <plugin>
268           <groupId>org.apache.maven.plugins</groupId>
269           <artifactId>maven-resources-plugin</artifactId>
270           <version>2.4.1</version>
271           <configuration>
272             <encoding>ISO-8859-1</encoding>
273           </configuration>
274         </plugin>
275         <plugin>
276           <groupId>org.apache.maven.plugins</groupId>
277           <artifactId>maven-antrun-plugin</artifactId>
278           <version>1.3</version>
279         </plugin>
280         <plugin>
281           <groupId>org.codehaus.mojo</groupId>
282           <artifactId>findbugs-maven-plugin</artifactId>
283           <version>2.3.2</version>
284           <configuration>
285             <findbugsXmlOutput>true</findbugsXmlOutput>
286             <failOnError>false</failOnError>
287           </configuration>
288           <executions>
289             <execution>
290               <goals>
291                 <goal>check</goal>
292               </goals>
293             </execution>
294           </executions>
295         </plugin>
296         <plugin>
297           <groupId>org.apache.maven.plugins</groupId>
298           <artifactId>maven-pmd-plugin</artifactId>
299           <version>2.5</version>
300           <configuration>
301             <sourceEncoding>utf-8</sourceEncoding>
302             <minimumTokens>100</minimumTokens>
303             <targetJdk>1.5</targetJdk>
304             <format>xml</format>
305             <failOnViolation>false</failOnViolation>
306           </configuration>
307           <executions>
308             <execution>
309               <goals>
310                 <goal>cpd-check</goal>
311               </goals>
312             </execution>
313           </executions>
314         </plugin>
315         <plugin>
316           <groupId>org.apache.maven.plugins</groupId>
317           <artifactId>maven-assembly-plugin</artifactId>
318           <version>2.2-beta-4</version>
319         </plugin>
320         <plugin>
321           <groupId>org.eclipse.dash.maven</groupId>
322           <artifactId>eclipse-signing-maven-plugin</artifactId>
323           <version>1.0.3</version>
324         </plugin>
325       </plugins>
326     </pluginManagement>
327   </build>
329   <dependencies>
330     <dependency>
331       <groupId>org.mockito</groupId>
332       <artifactId>mockito-core</artifactId>
333       <version>${mockito-version}</version>
334     </dependency>
335   </dependencies>
337   <dependencyManagement>
338     <dependencies>
339       <dependency>
340         <groupId>junit</groupId>
341         <artifactId>junit</artifactId>
342         <version>${junit-version}</version>
343         <scope>test</scope>
344       </dependency>
345     </dependencies>
346   </dependencyManagement>
347 </project>