blob: 811a3ac1685aeb690761dcbd9efde644be7bf32e [file] [log] [blame]
<?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.photran</groupId>
<artifactId>photran-parent</artifactId>
<version>9.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<version>9.0.1-SNAPSHOT</version>
<artifactId>org.eclipse.photran.repo</artifactId>
<packaging>eclipse-repository</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-publisher-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<publishArtifacts>true</publishArtifacts>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>production</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>deploy</id>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<mkdir dir="${photran-install-dir}" />
<delete includeemptydirs="true">
<fileset dir="${photran-install-dir}">
<include name="**" />
</fileset>
</delete>
<unzip
src="${project.build.directory}/${project.build.finalName}.zip"
dest="${photran-install-dir}" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>