openhab-core/targetplatform/pom.xml
Kai Kreuzer c88d806951 changed groupId or targetplatform
Signed-off-by: Kai Kreuzer <kai@openhab.org>
2015-12-27 23:59:48 +01:00

45 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.openhab.core</groupId>
<artifactId>pom-tycho</artifactId>
<version>2.0.0-SNAPSHOT</version>
<relativePath>../poms/tycho/pom.xml</relativePath>
</parent>
<artifactId>targetplatform</artifactId>
<name>openHAB Target Platform</name>
<packaging>pom</packaging>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>openhab.target</file>
<type>target</type>
<classifier>openhab</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>