blob: f312c9b13117b13c0347c711bf0de1b491b95d5a [file] [log] [blame]
<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>org.eclipse.ease.releng.publishp2</artifactId>
<packaging>pom</packaging>
<version>0.9.0-SNAPSHOT</version>
<groupId>org.eclipse.ease</groupId>
<properties>
<!-- used plugin versions -->
<tycho.version>2.4.0</tycho.version>
<tycho.extras.version>${tycho.version}</tycho.extras.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>tycho-p2-extras-plugin</artifactId>
<groupId>org.eclipse.tycho.extras</groupId>
<version>${tycho.version}</version>
<executions>
<execution>
<id>addModules</id>
<phase>install</phase>
<goals>
<goal>mirror</goal>
</goals>
<configuration>
<name>${p2.name}</name>
<source>
<repository>
<url>${p2.source}</url>
</repository>
</source>
<append>${p2.append}</append>
<latestVersionOnly>${p2.keepLatestOnly}</latestVersionOnly>
<destination>${p2.destination}</destination>
<xzCompress>true</xzCompress>
<keepNonXzIndexFiles>true</keepNonXzIndexFiles>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>