forked from openhab/openhab-distro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- don't include legacy features in offline distro (openhab#187)
- added feature for experimental add-ons Signed-off-by: Kai Kreuzer <[email protected]>
- Loading branch information
1 parent
297d970
commit ad6df42
Showing
6 changed files
with
80 additions
and
9 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
distributions/distribution-resources/src/main/resources/conf/services/addons.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?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.distro</groupId> | ||
<artifactId>pom-features</artifactId> | ||
<version>2.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<groupId>org.openhab.addons</groupId> | ||
<artifactId>openhab-addons-experimental</artifactId> | ||
<packaging>feature</packaging> | ||
|
||
<name>openHAB Experimental Feature Addons</name> | ||
<description>openHAB Experimental Addons</description> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.karaf.tooling</groupId> | ||
<artifactId>karaf-maven-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<startLevel>80</startLevel> | ||
<aggregateFeatures>true</aggregateFeatures> | ||
<!-- <resolver>(obr)</resolver> --> | ||
<checkDependencyChange>true</checkDependencyChange> | ||
<failOnDependencyChange>false</failOnDependencyChange> | ||
<logDependencyChanges>true</logDependencyChanges> | ||
<overwriteChangedDependencies>true</overwriteChangedDependencies> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
30 changes: 30 additions & 0 deletions
30
features/openhab-addons-experimental/src/main/feature/feature.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2014-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 | ||
--> | ||
<features name="${project.artifactId}-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.4.0"> | ||
|
||
<!-- binding --> | ||
|
||
<feature name="openhab-misc-ruleengine" description="Rule Engine (Experimental)" version="${project.version}"> | ||
<feature>openhab-runtime-base</feature> | ||
<feature dependency="true">esh-automation-api</feature> | ||
<feature dependency="true">esh-automation-commands</feature> | ||
<feature dependency="true">esh-automation-core</feature> | ||
<feature dependency="true">esh-automation-module-core</feature> | ||
<feature dependency="true">esh-automation-module-script</feature> | ||
<feature dependency="true">esh-automation-module-script-defaultscope</feature> | ||
<feature dependency="true">esh-automation-module-timer</feature> | ||
<feature dependency="true">esh-automation-parser-gson</feature> | ||
<feature dependency="true">esh-automation-providers</feature> | ||
<feature dependency="true">esh-automation-rest</feature> | ||
</feature> | ||
|
||
</features> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters