diff options
author | Florian Noyrit | 2014-01-08 09:51:21 +0000 |
---|---|---|
committer | Florian Noyrit | 2014-01-08 09:51:21 +0000 |
commit | 5c7398079addc9e27785bc913dec6bec1f9ae36a (patch) | |
tree | a01df1b7c33838fb51ffc02af1a2876d315f673b /releng/rcp/org.eclipse.papyrus.rcp.master/pom.xml | |
parent | 7288d1d07df913a5c286c85e0bd078dbb563d47a (diff) | |
download | org.eclipse.papyrus-5c7398079addc9e27785bc913dec6bec1f9ae36a.tar.gz org.eclipse.papyrus-5c7398079addc9e27785bc913dec6bec1f9ae36a.tar.xz org.eclipse.papyrus-5c7398079addc9e27785bc913dec6bec1f9ae36a.zip |
Initial implementation of plugins to produce a RCP of Papyrus with
Tycho.
Diffstat (limited to 'releng/rcp/org.eclipse.papyrus.rcp.master/pom.xml')
-rw-r--r-- | releng/rcp/org.eclipse.papyrus.rcp.master/pom.xml | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/releng/rcp/org.eclipse.papyrus.rcp.master/pom.xml b/releng/rcp/org.eclipse.papyrus.rcp.master/pom.xml new file mode 100644 index 00000000000..6a062b1acd8 --- /dev/null +++ b/releng/rcp/org.eclipse.papyrus.rcp.master/pom.xml @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <groupId>org.eclipse.papyrus</groupId> + <artifactId>org.eclipse.papyrus.rcp.master</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <!-- tycho requires maven >= 3.0 --> + <prerequisites> + <maven>3.0</maven> + </prerequisites> + + + <properties> + <tycho-version>0.19.0</tycho-version> + </properties> + <repositories> + <!-- configure p2 repository to resolve against --> + <repository> + <id>Luna</id> + <layout>p2</layout> + <url>http://download.eclipse.org/releases/luna</url> + </repository> + <repository> + <id>eclipse-update</id> + <layout>p2</layout> + <url>http://download.eclipse.org/eclipse/updates/4.4</url> + </repository> + <!-- <repository> --> + <!-- <id>subversive 0.7</id> --> + <!-- <layout>p2</layout> --> + <!-- <url>http://download.eclipse.org/technology/subversive/0.7/update-site/</url> --> + <!-- </repository> --> + </repositories> + <build> + <plugins> + <plugin> + <!-- enable tycho build extension --> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-maven-plugin</artifactId> + <version>${tycho-version}</version> + <extensions>true</extensions> + </plugin> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-versions-plugin</artifactId> + <version>${tycho-version}</version> + </plugin> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho-version}</version> + <configuration> + <environments> + <environment> + <os>linux</os> + <ws>gtk</ws> + <arch>x86_64</arch> + </environment> + <environment> + <os>linux</os> + <ws>gtk</ws> + <arch>x86</arch> + </environment> + <environment> + <os>win32</os> + <ws>win32</ws> + <arch>x86_64</arch> + </environment> + <environment> + <os>win32</os> + <ws>win32</ws> + <arch>x86</arch> + </environment> + <!-- <environment> + <os>macosx</os> + <ws>cocoa</ws> + <arch>x86_64</arch> + </environment> --> + </environments> + </configuration> + </plugin> + <!-- enable source bundle generation --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-source-plugin</artifactId> + <version>${tycho-version}</version> + <executions> + <execution> + <id>plugin-source</id> + <goals> + <goal>plugin-source</goal> + </goals> + </execution> + </executions> + </plugin> + <!-- <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-compiler-plugin</artifactId> + <version>${tycho-version}</version> + <configuration> + <compilerArgument>-err:-forbidden</compilerArgument> + <compilerArgument>-warn:+forbidden</compilerArgument> + </configuration> + </plugin> --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>2.5</version> + <configuration> + <encoding>UTF-8</encoding> + </configuration> + </plugin> + </plugins> + </build> + <modules> + <module>../org.eclipse.papyrus.rcp</module> + <module>../org.eclipse.papyrus.rcp.feature</module> + <module>../org.eclipse.papyrus.rcp.product</module> + </modules> +</project> |