openhab-addons/features/openhab-addons-external/pom.xml
Kai Kreuzer 4be0e341d8 Codebase as of f11ddbc2a3 as an initial commit for the shrunk repo
Signed-off-by: Kai Kreuzer <kai@openhab.org>
2020-09-20 23:52:13 +02:00

65 lines
2.3 KiB
XML

<?xml version="1.0" encoding="UTF-8" standalone="no"?><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.addons.features.karaf</groupId>
<artifactId>org.openhab.addons.reactor.features.karaf</artifactId>
<version>2.5.10-SNAPSHOT</version>
</parent>
<artifactId>openhab-addons-external</artifactId>
<packaging>pom</packaging>
<name>openHAB Add-ons :: Features :: Karaf :: Add-ons External</name>
<description>openHAB Add-ons External</description>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifact</id>
<goals>
<goal>attach-artifact</goal>
</goals>
<phase>package</phase>
<configuration>
<artifacts>
<artifact>
<file>src/main/resources/conf/voicerss.cfg</file>
<type>cfg</type>
<classifier>voicerss</classifier>
</artifact>
<artifact>
<file>src/main/resources/conf/openhabcloud.cfg</file>
<type>cfg</type>
<classifier>openhabcloud</classifier>
</artifact>
<artifact>
<file>src/main/resources/conf/exec.whitelist</file>
<type>cfg</type>
<classifier>exec.whitelist</classifier>
</artifact>
<artifact>
<file>src/main/resources/lib/libLeap.dylib</file>
<type>lib</type>
<classifier>libLeap</classifier>
</artifact>
<artifact>
<file>src/main/resources/lib/libLeapJava.dylib</file>
<type>lib</type>
<classifier>libLeapJava</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>