blob: 6b1ca89dfab8aea73db846356f85c4bdfdb92c95 [file] [log] [blame]
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>${groupId}</groupId>
<artifactId>${groupId}.${artifactId}.releng</artifactId>
<version>${version}-SNAPSHOT</version>
</parent>
<artifactId>${groupId}.${artifactId}.product</artifactId>
<packaging>eclipse-repository</packaging>
<name>${groupId}.${artifactId}.product</name>
<description>This plugins defines the product used in the RCP ${componentName}.</description>
<properties>
<product-id>${groupId}.product</product-id>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<configuration>
<includeAllDependencies>true</includeAllDependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<configuration>
<profile>${groupId}</profile>
<formats>
<linux>zip</linux>
<macosx>tar.gz</macosx>
</formats>
<products>
<product>
<id>${product-id}</id>
<rootFolder>papyrus${componentName}</rootFolder>
</product>
</products>
</configuration>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
<execution>
<id>archive-products</id>
<goals>
<goal>archive-products</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>