| <?xml version="1.0" encoding="UTF-8"?> | |
| <project | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | |
| xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <parent> | |
| <groupId>org.eclipse.mat</groupId> | |
| <artifactId>parent</artifactId> | |
| <relativePath>../parent</relativePath> | |
| <version>1.9.1-SNAPSHOT</version> | |
| </parent> | |
| <artifactId>org.eclipse.mat.updatesite</artifactId> | |
| <packaging>eclipse-repository</packaging> | |
| <profiles> | |
| <profile> | |
| <id>build-server</id> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-antrun-plugin</artifactId> | |
| <version>1.7</version> | |
| <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/repository"> | |
| <include name="**" /> | |
| </fileset> | |
| </copy> | |
| </tasks> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| </profiles> | |
| </project> |