blob: b61776d66791a1e61a14c3add8e857c27796ae4c [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>
<!-- Parent POM (i.e., the one owned by the releng folder) -->
<parent>
<groupId>org.eclipse.papyrus.ease</groupId>
<artifactId>org.eclipse.papyrus.ease.releng.root</artifactId>
<version>0.7.0-SNAPSHOT</version>
</parent>
<!-- POM description -->
<artifactId>org.eclipse.papyrus.ease.releng.p2</artifactId>
<name>Papyrus EASE update site</name>
<packaging>eclipse-repository</packaging>
<build>
<plugins>
<plugin>
<!-- https://github.com/jbosstools/jbosstools-maven-plugins/wiki -->
<groupId>org.jboss.tools.tycho-plugins</groupId>
<artifactId>repository-utils</artifactId>
<version>${jboss.version}</version>
<executions>
<execution>
<id>generate-facade</id>
<phase>package</phase>
<goals>
<goal>generate-repository-facade</goal>
</goals>
<configuration>
<!-- do not generate the pesky web folder and index.html -->
<skipWebContentGeneration>true</skipWebContentGeneration>
<associateSites>
<!-- Py4j Update site -->
<site>http://eclipse.py4j.org/</site>
<!-- EASE Udate site -->
<site>https://download.eclipse.org/ease/release/0.7.0</site>
</associateSites>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>