| <?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.rap.e4</groupId> |
| <artifactId>org.eclipse.rap.e4.tooling.updatesite</artifactId> |
| <packaging>eclipse-update-site</packaging> |
| |
| <parent> |
| <groupId>org.eclipse.rap.e4</groupId> |
| <artifactId>org.eclipse.rap.e4.tools-releng</artifactId> |
| <relativePath>../../releng/releng-tooling/pom.xml</relativePath> |
| <version>0.9.0-SNAPSHOT</version> |
| </parent> |
| |
| <properties> |
| <p2repo-zip-path>${project.build.directory}/site_assembly.zip</p2repo-zip-path> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-packaging-plugin</artifactId> |
| <configuration> |
| <archiveSite>true</archiveSite> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>build-server</id> |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>deploy</id> |
| <phase>install</phase> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <configuration> |
| <tasks> |
| <delete includeemptydirs="false"> |
| <fileset dir="${download-publish-path}"> |
| <include name="**" /> |
| </fileset> |
| </delete> |
| <copy includeemptydirs="false" |
| todir="${download-publish-path}"> |
| <fileset dir="target"> |
| <include name="**" /> |
| </fileset> |
| </copy> |
| </tasks> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| |
| </project> |