Prevent NPE when comparing an untracked file with the index
[egit.git] / pom.xml
blobf3033c2b6ac4e609eb55ca904634478457a6af4e
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com>
5    All rights reserved. This program and the accompanying materials
6    are made available under the terms of the Eclipse Public License v1.0
7    which accompanies this distribution, and is available at
8    http://www.eclipse.org/legal/epl-v10.html
9 -->
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
14   <modelVersion>4.0.0</modelVersion>
16   <prerequisites>
17     <maven>3.0</maven>
18   </prerequisites>
20   <groupId>org.eclipse.egit</groupId>
21   <artifactId>egit-parent</artifactId>
22   <version>0.8.0-SNAPSHOT</version>
23   <packaging>pom</packaging>
25   <name>EGit Parent (Incubation)</name>
27   <mailingLists>
28     <mailingList>
29       <name>egit-dev Mailing List</name>
30       <post>egit-dev@eclipse.org</post>
31       <subscribe>https://dev.eclipse.org/mailman/listinfo/egit-dev</subscribe>
32       <unsubscribe>https://dev.eclipse.org/mailman/listinfo/egit-dev</unsubscribe>
33       <archive>http://dev.eclipse.org/mhonarc/lists/egit-dev</archive>
34     </mailingList>
36     <mailingList>
37       <name>GIT Mailing List</name>
38       <post>git@vger.kernel.org</post>
39       <archive>http://marc.info/?l=git</archive>
40     </mailingList>
41   </mailingLists>
43   <issueManagement>
44     <url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;product=EGit;classification=Technology</url>
45     <system>Bugzilla</system>
46   </issueManagement>
48   <licenses>
49     <license>
50       <name>Eclipse Public License v1.0</name>
51       <comments>
52        All rights reserved.
54        This program and the accompanying materials are made
55        available under the terms of the Eclipse Public License v1.0
56        which accompanies this distribution, and is available at
57        http://www.eclipse.org/legal/epl-v10.htm
58       </comments>
59     </license>
60   </licenses>
62   <properties>
63     <tycho-version>0.8.0</tycho-version>
64     <platform-version-name>ganymede</platform-version-name>
65     <jgit-site>file:/${basedir}/../../jgit/org.eclipse.jgit.packaging/org.eclipse.jgit.updatesite/target/site</jgit-site>
66     <eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site>
67     <swtbot-site>http://download.eclipse.org/technology/swtbot/${platform-version-name}/dev-build/update-site</swtbot-site>
68   </properties>
70   <profiles>
71     <profile>
72       <id>platform-ganymede</id>
73       <activation>
74         <property>
75           <name>platform-version-name</name>
76           <value>ganymede</value>
77         </property>
78       </activation>
79       <properties>
80         <platform-version>[3.4,3.5)</platform-version>
81       </properties>
82     </profile>
83     <profile>
84       <id>platform-galileo</id>
85       <activation>
86         <property>
87           <name>platform-version-name</name>
88           <value>galileo</value>
89         </property>
90       </activation>
91       <properties>
92         <platform-version>[3.5,3.6)</platform-version>
93       </properties>
94     </profile>
95     <profile>
96       <id>platform-helios</id>
97       <activation>
98         <property>
99           <name>platform-version-name</name>
100           <value>helios</value>
101         </property>
102       </activation>
103       <properties>
104         <platform-version>[3.6,3.7)</platform-version>
105       </properties>
106     </profile>
107   </profiles>
109   <modules>
110     <module>org.eclipse.egit</module>
111     <module>org.eclipse.egit.core</module>
112     <module>org.eclipse.egit.ui</module>
114     <module>org.eclipse.egit.doc</module>
115     <module>org.eclipse.egit-feature</module>
116     <module>org.eclipse.egit-updatesite</module>
118     <module>org.eclipse.egit.core.test</module>
119     <module>org.eclipse.egit.ui.test</module>
120   </modules>
122   <repositories>
123     <repository>
124       <id>jgit</id>
125       <layout>p2</layout>
126       <url>${jgit-site}</url>
127     </repository>
128     <repository>
129       <id>ganymede</id>
130       <layout>p2</layout>
131       <url>${eclipse-site}</url>
132     </repository>
133     <repository>
134       <id>swtbot</id>
135       <layout>p2</layout>
136       <url>${swtbot-site}</url>
137     </repository>
138   </repositories>
140   <build>
141     <plugins>
142       <plugin>
143         <groupId>org.sonatype.tycho</groupId>
144         <artifactId>tycho-maven-plugin</artifactId>
145         <version>${tycho-version}</version>
146         <extensions>true</extensions>
147       </plugin>
148       <plugin>
149         <groupId>org.sonatype.tycho</groupId>
150         <artifactId>target-platform-configuration</artifactId>
151         <version>${tycho-version}</version>
152         <configuration>
153           <resolver>p2</resolver>
154         </configuration>
155       </plugin>
156     </plugins>
157     <pluginManagement>
158       <plugins>
159         <plugin>
160           <groupId>org.sonatype.tycho</groupId>
161           <artifactId>maven-osgi-compiler-plugin</artifactId>
162           <version>${tycho-version}</version>
163           <configuration>
164             <encoding>UTF-8</encoding>
165           </configuration>
166         </plugin>
167         <plugin>
168           <groupId>org.apache.maven.plugins</groupId>
169           <artifactId>maven-resources-plugin</artifactId>
170           <version>2.4.1</version>
171           <configuration>
172             <encoding>ISO-8859-1</encoding>
173           </configuration>
174         </plugin>
175         <plugin>
176           <groupId>org.apache.maven.plugins</groupId>
177           <artifactId>maven-antrun-plugin</artifactId>
178           <version>1.3</version>
179         </plugin>
180       </plugins>
181     </pluginManagement>
182   </build>
183 </project>