2023-07-24 01:20:31 +02:00
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2010-02-20 19:23:32 +01:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.addons.features.karaf</groupId>
|
|
|
|
<artifactId>org.openhab.addons.reactor.features.karaf</artifactId>
|
2023-07-23 21:19:01 +02:00
|
|
|
<version>4.1.0-SNAPSHOT</version>
|
2010-02-20 19:23:32 +01:00
|
|
|
</parent>
|
|
|
|
|
2020-09-21 23:32:41 +02:00
|
|
|
<artifactId>org.openhab.addons.features.karaf.openhab-addons-external</artifactId>
|
2010-02-20 19:23:32 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>openHAB Add-ons :: Features :: Karaf :: Add-ons External</name>
|
|
|
|
<description>openHAB Add-ons External</description>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2023-12-04 22:42:40 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>create-addonsinfo</id>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<concat destfile="${project.build.directory}/addons.xml">
|
|
|
|
<header file="src/main/resources/addon-header.xml" filtering="no"/>
|
|
|
|
<fileset dir="${basedirRoot}/bundles">
|
2023-12-11 14:19:41 +01:00
|
|
|
<include name="*/src/main/resources/OH-INF/addon/addon*.xml"/>
|
2023-12-04 22:42:40 +01:00
|
|
|
</fileset>
|
|
|
|
<filterchain>
|
|
|
|
<linecontainsRegExp negate="true">
|
|
|
|
<regexp pattern="<\?xml"/>
|
|
|
|
</linecontainsRegExp>
|
|
|
|
</filterchain>
|
|
|
|
<footer file="src/main/resources/addon-footer.xml" filtering="no"/>
|
|
|
|
</concat>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2010-02-20 19:23:32 +01:00
|
|
|
<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>
|
2023-12-04 22:42:40 +01:00
|
|
|
<artifact>
|
|
|
|
<file>${project.build.directory}/addons.xml</file>
|
|
|
|
<type>xml</type>
|
|
|
|
<classifier>addons</classifier>
|
|
|
|
</artifact>
|
2010-02-20 19:23:32 +01:00
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/dynamodb.cfg</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>dynamodb</classifier>
|
|
|
|
</artifact>
|
2020-12-11 14:34:44 +01:00
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/exec.whitelist</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>exec.whitelist</classifier>
|
|
|
|
</artifact>
|
2010-02-20 19:23:32 +01:00
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/influxdb.cfg</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>influxdb</classifier>
|
|
|
|
</artifact>
|
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/jdbc.cfg</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>jdbc</classifier>
|
|
|
|
</artifact>
|
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/jpa.cfg</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>jpa</classifier>
|
|
|
|
</artifact>
|
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/mapdb.cfg</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>mapdb</classifier>
|
|
|
|
</artifact>
|
2020-12-11 14:34:44 +01:00
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/openhabcloud.cfg</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>openhabcloud</classifier>
|
|
|
|
</artifact>
|
2010-02-20 19:23:32 +01:00
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/rrd4j.cfg</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>rrd4j</classifier>
|
|
|
|
</artifact>
|
2020-12-11 14:34:44 +01:00
|
|
|
<artifact>
|
|
|
|
<file>src/main/resources/conf/voicerss.cfg</file>
|
|
|
|
<type>cfg</type>
|
|
|
|
<classifier>voicerss</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>
|
2010-02-20 19:23:32 +01:00
|
|
|
</artifacts>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|