mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-12 14:11:54 +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>
20 lines
1.0 KiB
XML
20 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Copyright (c) 2015-2016 by the respective copyright holders.
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
are made available under the terms of the Eclipse Public License v1.0
|
|
which accompanies this distribution, and is available at
|
|
http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
-->
|
|
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" immediate="true" name="org.openhab.core.karafextension">
|
|
<implementation class="org.openhab.core.karaf.internal.KarafExtensionService"/>
|
|
<service>
|
|
<provide interface="org.eclipse.smarthome.core.extension.ExtensionService"/>
|
|
</service>
|
|
<reference bind="setFeaturesService" cardinality="1..1" interface="org.apache.karaf.features.FeaturesService" name="FeaturesService" policy="static" unbind="unsetFeaturesService"/>
|
|
<reference bind="setFeatureInstaller" cardinality="1..1" interface="org.openhab.core.karaf.internal.FeatureInstaller" name="FeatureInstaller" policy="static" unbind="unsetFeatureInstaller"/>
|
|
</scr:component>
|