Merge "Fix bad title for the branch selection page in the Git import wizard"
[egit.git] / pom.xml
blob8aa798af88c2acfde7407540ecc23f9bf653dd37
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</name>
27   <properties>
28     <tycho-version>0.6.0</tycho-version>
29   </properties>
31   <modules>
32     <module>org.eclipse.egit</module>
33     <module>org.eclipse.egit.core</module>
34     <module>org.eclipse.egit.ui</module>
36     <module>org.eclipse.egit-feature</module>
37     <module>org.eclipse.egit-updatesite</module>
39     <module>org.eclipse.egit.core.test</module>
40   </modules>
42   <repositories>
43     <repository>
44       <id>galileo</id>
45       <layout>p2</layout>
46       <url>http://download.eclipse.org/releases/galileo</url>
47     </repository>
48   </repositories>
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.sonatype.tycho</groupId>
54         <artifactId>tycho-maven-plugin</artifactId>
55         <version>${tycho-version}</version>
56         <extensions>true</extensions>
57       </plugin>
58       <plugin>
59         <groupId>org.sonatype.tycho</groupId>
60         <artifactId>target-platform-configuration</artifactId>
61         <version>${tycho-version}</version>
62         <configuration>
63           <resolver>p2</resolver>
64         </configuration>
65       </plugin>
66     </plugins>
67     <pluginManagement>
68       <plugins>
69         <plugin>
70           <groupId>org.sonatype.tycho</groupId>
71           <artifactId>maven-osgi-compiler-plugin</artifactId>
72           <version>${tycho-version}</version>
73           <configuration>
74             <encoding>UTF-8</encoding>
75           </configuration>
76         </plugin>
77         <plugin>
78           <groupId>org.apache.maven.plugins</groupId>
79           <artifactId>maven-resources-plugin</artifactId>
80           <version>2.4.1</version>
81           <configuration>
82             <encoding>ISO-8859-1</encoding>
83           </configuration>
84         </plugin>
85       </plugins>
86     </pluginManagement>
87   </build>
88 </project>