| <?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.emf.ecp</groupId> |
| <artifactId>ecp-rap-parent</artifactId> |
| <version>1.25.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <!-- Parent for the rap product. Needed to reduce environments. |
| There are no platform dependent fragments, so the platform is arbitrary --> |
| |
| <properties> |
| <tycho-version>1.4.0</tycho-version> |
| <tycho-extras-version>1.4.0</tycho-extras-version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| </properties> |
| |
| <modules> |
| <module>../org.eclipse.emf.ecp.target.rap</module> |
| <module>../org.eclipse.emf.ecp.target.rcp</module> |
| <module>../org.eclipse.emf.ecp.rap.products</module> |
| </modules> |
| |
| <build> |
| <plugins> |
| <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> |
| <configuration> |
| <resolver>p2</resolver> |
| <pomDependencies>consider</pomDependencies> |
| <allowConflictingDependencies>true</allowConflictingDependencies> |
| <environments> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86_64</arch> |
| </environment> |
| </environments> |
| <target> |
| <artifact> |
| <groupId>org.eclipse.emf.ecp</groupId> |
| <artifactId>ecp</artifactId> |
| <version>${project.version}</version> |
| </artifact> |
| <artifact> |
| <groupId>org.eclipse.emf.ecp</groupId> |
| <artifactId>ecpRAP</artifactId> |
| <version>${project.version}</version> |
| </artifact> |
| </target> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |