Check for unsaved changes before Commit
[egit.git] / pom.xml
blobfedd5d15d1e5bf4bcddb96ea9e769ac11d041fda
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.2-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     <wikitext-site>http://download.eclipse.org/tools/mylyn/update/weekly/e3.4</wikitext-site>
69   </properties>
71   <profiles>
72     <profile>
73       <id>platform-ganymede</id>
74       <activation>
75         <property>
76           <name>platform-version-name</name>
77           <value>ganymede</value>
78         </property>
79       </activation>
80       <properties>
81         <platform-version>[3.4,3.5)</platform-version>
82       </properties>
83     </profile>
84     <profile>
85       <id>platform-galileo</id>
86       <activation>
87         <property>
88           <name>platform-version-name</name>
89           <value>galileo</value>
90         </property>
91       </activation>
92       <properties>
93         <platform-version>[3.5,3.6)</platform-version>
94       </properties>
95     </profile>
96     <profile>
97       <id>platform-helios</id>
98       <activation>
99         <property>
100           <name>platform-version-name</name>
101           <value>helios</value>
102         </property>
103       </activation>
104       <properties>
105         <platform-version>[3.6,3.7)</platform-version>
106       </properties>
107     </profile>
108   </profiles>
110   <modules>
111     <module>org.eclipse.egit</module>
112     <module>org.eclipse.egit.core</module>
113     <module>org.eclipse.egit.ui</module>
115     <module>org.eclipse.egit.doc</module>
116     <module>org.eclipse.egit-feature</module>
117     <module>org.eclipse.egit-updatesite</module>
119     <module>org.eclipse.egit.core.test</module>
120     <module>org.eclipse.egit.ui.test</module>
121   </modules>
123   <repositories>
124     <repository>
125       <id>jgit</id>
126       <layout>p2</layout>
127       <url>${jgit-site}</url>
128     </repository>
129     <repository>
130       <id>ganymede</id>
131       <layout>p2</layout>
132       <url>${eclipse-site}</url>
133     </repository>
134     <repository>
135       <id>swtbot</id>
136       <layout>p2</layout>
137       <url>${swtbot-site}</url>
138     </repository>
139     <repository>
140       <id>wikitext</id>
141       <layout>p2</layout>
142       <url>${wikitext-site}</url>
143     </repository>
144   </repositories>
146   <build>
147     <plugins>
148       <plugin>
149         <groupId>org.sonatype.tycho</groupId>
150         <artifactId>tycho-maven-plugin</artifactId>
151         <version>${tycho-version}</version>
152         <extensions>true</extensions>
153       </plugin>
154       <plugin>
155         <groupId>org.sonatype.tycho</groupId>
156         <artifactId>target-platform-configuration</artifactId>
157         <version>${tycho-version}</version>
158         <configuration>
159           <resolver>p2</resolver>
160         </configuration>
161       </plugin>
162     </plugins>
163     <pluginManagement>
164       <plugins>
165         <plugin>
166           <groupId>org.sonatype.tycho</groupId>
167           <artifactId>maven-osgi-compiler-plugin</artifactId>
168           <version>${tycho-version}</version>
169           <configuration>
170             <encoding>UTF-8</encoding>
171           </configuration>
172         </plugin>
173         <plugin>
174           <groupId>org.apache.maven.plugins</groupId>
175           <artifactId>maven-resources-plugin</artifactId>
176           <version>2.4.1</version>
177           <configuration>
178             <encoding>ISO-8859-1</encoding>
179           </configuration>
180         </plugin>
181         <plugin>
182           <groupId>org.apache.maven.plugins</groupId>
183           <artifactId>maven-antrun-plugin</artifactId>
184           <version>1.3</version>
185         </plugin>
186       </plugins>
187     </pluginManagement>
188   </build>
189 </project>