blob: f294f499ba10809afdc75d4221925ddfc2a42790 [file] [log] [blame]
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.uomo.build</groupId>
<artifactId>org.eclipse.uomo.build.repository</artifactId>
<name>Eclipse UOMo Tycho Repository Build</name>
<packaging>eclipse-repository</packaging>
<parent>
<groupId>org.eclipse.uomo.build</groupId>
<artifactId>org.eclipse.uomo.build.tycho</artifactId>
<version>0.6.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>process-resources</phase>
<configuration>
<target>
<echo>Adding profiles.xml file</echo>
<copy file="profiles.xml" todir="target/repository"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>