blob: e3aa54eaf8fe5995ee050250a892fb0d2de1bac0 [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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.paho.tools</groupId>
<artifactId>tools-parent</artifactId>
<version>${paho.tools.version}</version>
</parent>
<artifactId>org.eclipse.paho.client.eclipse.repository</artifactId>
<packaging>eclipse-repository</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-p2-extras-plugin</artifactId>
<executions>
<execution>
<id>update-main-p2-repo</id>
<phase>package</phase>
<goals>
<goal>publish-features-and-bundles</goal>
</goals>
<configuration>
<append>true</append>
<artifactRepositoryLocation>/shared/technology/paho/Java</artifactRepositoryLocation>
<metadataRepositoryLocation>/shared/technology/paho/Java</metadataRepositoryLocation>
<sourceLocation>${project.build.directory}/repository</sourceLocation>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>