blob: ac709fa194f2ac847853564896c7638fc67dfa2d [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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.app4mc.build.updatesite</groupId>
<artifactId>update</artifactId>
<version>1.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-p2-extras-plugin</artifactId>
<version>0.20.0</version>
<executions>
<execution>
<id>addToUpdateSite</id>
<phase>install</phase>
<goals>
<goal>mirror</goal>
</goals>
<configuration>
<source>
<repository>
<url>${sourceUpdateSite}</url>
</repository>
</source>
<append>true</append>
<destination>${targetUpdateSite}</destination>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>