| <?xml version="1.0" encoding="UTF-8"?> |
| <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/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>full</artifactId> |
| <packaging>eclipse-repository</packaging> |
| <parent> |
| <artifactId>ide</artifactId> |
| <groupId>org.eclipse.rcptt</groupId> |
| <version>1.5.2-SNAPSHOT</version> |
| <relativePath>../../releng/ide/pom.xml</relativePath> |
| </parent> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>.</directory> |
| <filtering>true</filtering> |
| <includes> |
| <include>publisher.properties</include> |
| </includes> |
| </resource> |
| </resources> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.4.3</version> |
| <executions> |
| <execution> |
| <phase>verify</phase> |
| <goals> |
| <goal>resources</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <outputDirectory>${project.build.directory}</outputDirectory> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>${tycho-groupid}</groupId> |
| <artifactId>tycho-p2-director-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>materialize-products</id> |
| <phase>package</phase> |
| <goals> |
| <goal>materialize-products</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>archive-products</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>archive-products</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <products> |
| <product> |
| <id>org.eclipse.rcptt.platform.product</id> |
| <rootFolder>rcptt</rootFolder> |
| </product> |
| </products> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>com.xored.tycho</groupId> |
| <artifactId>eclipse-ini-patcher</artifactId> |
| <version>0.0.3</version> |
| <executions> |
| <execution> |
| <id>materialize-products</id> |
| <phase>package</phase> |
| <goals> |
| <goal>patch-ini-file</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>${tycho-groupid}</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <resolver>p2</resolver> |
| <!--ignoreTychoRepositories>true</ignoreTychoRepositories --> |
| <environments> |
| <environment> |
| <os>macosx</os> |
| <ws>cocoa</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>macosx</os> |
| <ws>cocoa</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>win32</os> |
| <ws>win32</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>win32</os> |
| <ws>win32</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86_64</arch> |
| </environment> |
| </environments> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <pluginRepositories> |
| <!-- this repo is required for eclipse-ini-patcher plugin (see above) |
| to improve Mac OS X product materialization |
| (see github.com/komaz/eclipse-ini-patcher) |
| --> |
| <pluginRepository> |
| <id>xored</id> |
| <name>Xored Maven repository</name> |
| <url>http://maven.xored.com/nexus/content/repositories/releases/</url> |
| </pluginRepository> |
| </pluginRepositories> |
| </project> |