forked from openhab/openhab-addons
-
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.
Merge pull request openhab#38 from kaikreuzer/esh-addons
moved esh addons from distro to core
- Loading branch information
Showing
5 changed files
with
128 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
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,44 @@ | ||
<?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-esh-addons</artifactId> | ||
<packaging>feature</packaging> | ||
|
||
<name>openHAB Feature ESH Addons</name> | ||
<description>openHAB Feature ESH 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> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>false</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
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,68 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<features name="${project.artifactId}-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.0.0"> | ||
|
||
<!-- binding --> | ||
|
||
<feature name="openhab-binding-hue" description="Hue Binding" version="${esh.version}"> | ||
<feature>esh-binding-hue</feature> | ||
</feature> | ||
|
||
<feature name="openhab-binding-fsinternetradio" description="Frontier Silicon Internet Radio Binding" version="${esh.version}"> | ||
<feature>esh-binding-fsinternetradio</feature> | ||
</feature> | ||
|
||
<feature name="openhab-binding-lifx" description="LIFX Binding" version="${esh.version}"> | ||
<feature>esh-binding-lifx</feature> | ||
</feature> | ||
|
||
<feature name="openhab-binding-ntp" description="NTP Binding" version="${esh.version}"> | ||
<feature>esh-binding-ntp</feature> | ||
</feature> | ||
|
||
<feature name="openhab-binding-sonos" description="Sonos Binding" version="${esh.version}"> | ||
<feature>esh-binding-sonos</feature> | ||
</feature> | ||
|
||
<feature name="openhab-binding-wemo" description="Wemo Binding" version="${esh.version}"> | ||
<feature>esh-binding-wemo</feature> | ||
</feature> | ||
|
||
<feature name="openhab-binding-yahooweather" description="Yahoo Weather Binding" version="${esh.version}"> | ||
<feature>esh-binding-yahooweather</feature> | ||
</feature> | ||
|
||
<!-- transformation --> | ||
|
||
<feature name="openhab-transformation-exec" description="Exec Transformation" version="${esh.version}"> | ||
<feature>esh-transform-exec</feature> | ||
</feature> | ||
|
||
<feature name="openhab-transformation-javascript" description="Javascript Transformation" version="${esh.version}"> | ||
<feature>esh-transform-javascript</feature> | ||
</feature> | ||
|
||
<feature name="openhab-transformation-map" description="Map Transformation" version="${esh.version}"> | ||
<feature>esh-transform-map</feature> | ||
</feature> | ||
|
||
<feature name="openhab-transformation-scale" description="Scale Transformation" version="${esh.version}"> | ||
<feature>esh-transform-scale</feature> | ||
</feature> | ||
|
||
<feature name="openhab-transformation-regex" description="RegEx Transformation" version="${esh.version}"> | ||
<feature>esh-transform-regex</feature> | ||
</feature> | ||
|
||
<feature name="openhab-transformation-xpath" description="XPath Transformation" version="${esh.version}"> | ||
<feature>esh-transform-xpath</feature> | ||
</feature> | ||
|
||
<feature name="openhab-transformation-jsonpath" description="JSONPath Transformation" version="${esh.version}"> | ||
<feature>esh-transform-jsonpath</feature> | ||
</feature> | ||
|
||
<feature name="openhab-transformation-xslt" description="XSLT Transformation" version="${esh.version}"> | ||
<feature>esh-transform-xslt</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