mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-02-04 08:03:53 +01:00
053c073d9e
* adapted FeatureInstaller to adapt addons info in ConfigAdmin, so that this info is stored in a file * removed experimental features * removed package selection from UI as it is meant to be only set once * introduced new packages: minimal, simple and expert * introduced a setup page on the dashboard, if no package is set (and thus openHAB is uninitialized) * added auto-refresh of dashboard to have new entries appear automatically Signed-off-by: Kai Kreuzer <kai@openhab.org>
51 lines
2.2 KiB
XML
51 lines
2.2 KiB
XML
<?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>
|