Fix EGit Tycho build
[egit/spearce.git] / pom.xml
bloba8048bd04df824ccc470d49a4b32edbe38a6dda6
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.6.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.6.0</tycho-version>
64     <jgit-version>0.6.0-SNAPSHOT</jgit-version>
65     <jgit-site>${project.baseUri}../../jgit/org.eclipse.jgit.packaging/org.eclipse.jgit.updatesite/target/site</jgit-site>
66     <eclipse-site>http://download.eclipse.org/releases/galileo</eclipse-site>
67   </properties>
69   <modules>
70     <module>org.eclipse.egit</module>
71     <module>org.eclipse.egit.core</module>
72     <module>org.eclipse.egit.ui</module>
74     <module>org.eclipse.egit-feature</module>
75     <module>org.eclipse.egit-updatesite</module>
77     <module>org.eclipse.egit.core.test</module>
78   </modules>
80   <repositories>
81     <repository>
82       <id>galileo</id>
83       <layout>p2</layout>
84       <url>${eclipse-site}</url>
85     </repository>
86     <repository>
87       <id>jgit</id>
88       <layout>p2</layout>
89       <url>${jgit-site}</url>
90     </repository>
91   </repositories>
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.sonatype.tycho</groupId>
97         <artifactId>tycho-maven-plugin</artifactId>
98         <version>${tycho-version}</version>
99         <extensions>true</extensions>
100       </plugin>
101       <plugin>
102         <groupId>org.sonatype.tycho</groupId>
103         <artifactId>target-platform-configuration</artifactId>
104         <version>${tycho-version}</version>
105         <configuration>
106           <resolver>p2</resolver>
107         </configuration>
108       </plugin>
109     </plugins>
110     <pluginManagement>
111       <plugins>
112         <plugin>
113           <groupId>org.sonatype.tycho</groupId>
114           <artifactId>maven-osgi-compiler-plugin</artifactId>
115           <version>${tycho-version}</version>
116           <configuration>
117             <encoding>UTF-8</encoding>
118           </configuration>
119         </plugin>
120         <plugin>
121           <groupId>org.apache.maven.plugins</groupId>
122           <artifactId>maven-resources-plugin</artifactId>
123           <version>2.4.1</version>
124           <configuration>
125             <encoding>ISO-8859-1</encoding>
126           </configuration>
127         </plugin>
128         <plugin>
129           <groupId>org.sonatype.tycho</groupId>
130           <artifactId>target-platform-configuration</artifactId>
131           <version>${tycho-version}</version>
132           <configuration>
133             <resolver>p2</resolver>
134             <pomDependencies>consider</pomDependencies>
135           </configuration>
136         </plugin>
137       </plugins>
138     </pluginManagement>
139   </build>
140 </project>