openhab-core/features/openhab-core-resources/pom.xml

51 lines
2.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<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.openhab.core</groupId>
<artifactId>pom-features</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>openhab-core-resources</artifactId>
<packaging>pom</packaging>
<name>openHAB Core Feature Resources</name>
<description>openHAB Core Feature Resources</description>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifact</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact><file>src/main/resources/addons-minimal.cfg</file><type>cfg</type><classifier>addons-minimal</classifier></artifact>
<artifact><file>src/main/resources/addons-simple.cfg</file><type>cfg</type><classifier>addons-simple</classifier></artifact>
<artifact><file>src/main/resources/addons-standard.cfg</file><type>cfg</type><classifier>addons-standard</classifier></artifact>
<artifact><file>src/main/resources/addons-expert.cfg</file><type>cfg</type><classifier>addons-expert</classifier></artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>