blob: d3d64b0c3b6d9b85723f047853612a14c82cc898 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2014 Fraunhofer FOKUS and others.
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
Contributors:
Max Bureck
Marc-Florian Wendland
-->
<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.upr</groupId>
<artifactId>org.eclipse.upr.build</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<properties>
<tycho-version>0.19.0</tycho-version>
<tycho-extras-version>0.19.0</tycho-extras-version>
</properties>
<repositories>
<repository>
<id>kepler</id>
<url>http://download.eclipse.org/releases/kepler</url>
<layout>p2</layout>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
</dependency>
</dependencies>
<modules>
<module>../../bundles/org.eclipse.upr.bpmn</module>
<module>../../bundles/org.eclipse.upr.depl</module>
<module>../../features/org.eclipse.upr.depl.feature</module>
<module>../../bundles/org.eclipse.upr.depl.papyrus</module>
<module>../../features/org.eclipse.upr.depl.papyrus.feature</module>
<module>../../bundles/org.eclipse.upr.soaml</module>
<module>../../features/org.eclipse.upr.soaml.feature</module>
<module>../../bundles/org.eclipse.upr.soaml.papyrus</module>
<module>../../features/org.eclipse.upr.soaml.papyrus.feature</module>
<module>../../bundles/org.eclipse.upr.utp</module>
<module>../../features/org.eclipse.upr.utp.feature</module>
<module>../../bundles/org.eclipse.upr.utp.papyrus</module>
<module>../../features/org.eclipse.upr.utp.papyrus.feature</module>
<module>../org.eclipse.upr.profiles</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-source-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-source-feature-plugin</artifactId>
<version>${tycho-extras-version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<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>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
<configuration>
<!-- recommended: use p2-based target platform resolver -->
<resolver>p2</resolver>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<!-- recommended: use p2-based target platform resolver -->
<resolver>p2</resolver>
<pomDependencies>consider</pomDependencies>
<environments>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</arch>
</environment>
<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>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</build>
</project>