blob: 502a8cf53389f2761aeb4db183741c67c5db6b52 [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>
<version>1.1.0-SNAPSHOT</version>
<artifactId>tracing</artifactId>
<packaging>eclipse-repository</packaging>
<name>Trace Compass RCP Product</name>
<parent>
<artifactId>org.eclipse.tracecompass.rcp-parent</artifactId>
<groupId>org.eclipse.tracecompass</groupId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<properties>
<productId>org.eclipse.tracecompass.rcp</productId>
<maven.build.timestamp.format>yyyyMMdd-HHmm</maven.build.timestamp.format>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
<execution>
<id>archive-products</id>
<goals>
<goal>archive-products</goal>
</goals>
<configuration>
<formats>
<linux>tar.gz</linux>
<macosx>tar.gz</macosx>
<solaris>zip</solaris>
<win32>zip</win32>
</formats>
</configuration>
</execution>
</executions>
<configuration>
<products>
<product>
<archiveFileName>trace-compass-${unqualifiedVersion}-${build.timestamp}</archiveFileName>
<id>${productId}</id>
<rootFolder>trace-compass</rootFolder>
<rootFolders>
<!-- for MacOSX, make sure you use a folder ending with .app , see bug 463670 -->
<macosx>trace-compass.app</macosx>
</rootFolders>
</product>
</products>
</configuration>
</plugin>
</plugins>
</build>
<!-- Deploy RCP builds and update site to the downloads area -->
<profiles>
<profile>
<id>deploy-rcp</id>
<properties>
<rcpDestination>/home/data/httpd/download.eclipse.org/tracecompass/master/rcp/</rcpDestination>
<rcpSiteDestination>/home/data/httpd/download.eclipse.org/tracecompass/master/rcp-repository/</rcpSiteDestination>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>deploy</id>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<!-- Cleanup the "rcp" destination, and copy over the new archives -->
<delete includeemptydirs="false">
<fileset dir="${rcpDestination}">
<include name="*.tar.gz" />
<include name="*.zip" />
</fileset>
</delete>
<copy includeemptydirs="false" todir="${rcpDestination}">
<fileset dir="target/products">
<include name="trace-compass-*" />
</fileset>
</copy>
<!-- Cleanup the "rcp-repository" update site, and copy over the new one -->
<delete includeemptydirs="false">
<fileset
dir="${rcpSiteDestination}">
<include name="**" />
</fileset>
</delete>
<copy includeemptydirs="false" todir="${rcpSiteDestination}">
<fileset dir="target/repository">
<include name="**" />
</fileset>
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<groupId>org.eclipse.tracecompass</groupId>
</project>