| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Copyright (C) 2010, Chris Aniszczyk <caniszczyk@gmail.com> |
| |
| All rights reserved. This program and the accompanying materials |
| are made available under the terms of the Eclipse Public License v1.0 |
| which accompanies this distribution, and is available at |
| http://www.eclipse.org/legal/epl-v10.html |
| --> |
| |
| <project xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <prerequisites> |
| <maven>3.0</maven> |
| </prerequisites> |
| |
| <groupId>org.eclipse.egit.pde</groupId> |
| <artifactId>egit-pde-parent</artifactId> |
| <version>0.10.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <name>EGit PDE Parent (Incubation)</name> |
| |
| <mailingLists> |
| <mailingList> |
| <name>egit-dev Mailing List</name> |
| <post>egit-dev@eclipse.org</post> |
| <subscribe>https://dev.eclipse.org/mailman/listinfo/egit-dev</subscribe> |
| <unsubscribe>https://dev.eclipse.org/mailman/listinfo/egit-dev</unsubscribe> |
| <archive>http://dev.eclipse.org/mhonarc/lists/egit-dev</archive> |
| </mailingList> |
| </mailingLists> |
| |
| <issueManagement> |
| <url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;product=EGit;classification=Technology</url> |
| <system>Bugzilla</system> |
| </issueManagement> |
| |
| <licenses> |
| <license> |
| <name>Eclipse Public License v1.0</name> |
| <comments> |
| All rights reserved. |
| |
| This program and the accompanying materials are made |
| available under the terms of the Eclipse Public License v1.0 |
| which accompanies this distribution, and is available at |
| http://www.eclipse.org/legal/epl-v10.htm |
| </comments> |
| </license> |
| </licenses> |
| |
| <properties> |
| <tycho-version>0.10.0</tycho-version> |
| <platform-version-name>helios</platform-version-name> |
| <eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site> |
| </properties> |
| |
| <profiles> |
| <profile> |
| <id>platform-helios</id> |
| <activation> |
| <property> |
| <name>platform-version-name</name> |
| <value>helios</value> |
| </property> |
| </activation> |
| <properties> |
| <platform-version>[3.6,3.7)</platform-version> |
| </properties> |
| </profile> |
| </profiles> |
| |
| <modules> |
| <module>org.eclipse.egit.fetchfactory</module> |
| |
| <module>org.eclipse.egit.pde-feature</module> |
| <module>org.eclipse.egit.pde-updatesite</module> |
| </modules> |
| |
| <repositories> |
| <repository> |
| <id>helios</id> |
| <layout>p2</layout> |
| <url>${eclipse-site}</url> |
| </repository> |
| </repositories> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.sonatype.tycho</groupId> |
| <artifactId>tycho-maven-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <extensions>true</extensions> |
| </plugin> |
| <plugin> |
| <groupId>org.sonatype.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <resolver>p2</resolver> |
| </configuration> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.sonatype.tycho</groupId> |
| <artifactId>maven-osgi-compiler-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <!-- TODO remove workaround when |
| https://issues.sonatype.org/browse/TYCHO-473 |
| is fixed --> |
| <groupId>org.sonatype.tycho</groupId> |
| <artifactId>maven-osgi-source-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>attach-source</id> |
| <phase>process-classes</phase> |
| <goals> |
| <goal>plugin-source</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.4.1</version> |
| <configuration> |
| <encoding>ISO-8859-1</encoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>1.3</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </project> |
| |