Skip to content

Commit 83dc498

Browse files
committed
[homeconnectdirect] Home Connect Direct Binding initial contribution
Signed-off-by: Jonas Brüstel <openhab@bruestel.net>
1 parent 71ad2a4 commit 83dc498

161 files changed

Lines changed: 21894 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@
168168
/bundles/org.openhab.binding.herzborg/ @Sonic-Amiga
169169
/bundles/org.openhab.binding.homeassistant/ @ccutrer
170170
/bundles/org.openhab.binding.homeconnect/ @bruestel
171+
/bundles/org.openhab.binding.homeconnectdirect/ @bruestel
171172
/bundles/org.openhab.binding.homekit/ @andrewfg
172173
/bundles/org.openhab.binding.homie/ @ccutrer
173174
/bundles/org.openhab.binding.homematic/ @FStolte @gerrieg @mdicke2s

bom/openhab-addons/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,11 @@
826826
<artifactId>org.openhab.binding.homeconnect</artifactId>
827827
<version>${project.version}</version>
828828
</dependency>
829+
<dependency>
830+
<groupId>org.openhab.addons.bundles</groupId>
831+
<artifactId>org.openhab.binding.homeconnectdirect</artifactId>
832+
<version>${project.version}</version>
833+
</dependency>
829834
<dependency>
830835
<groupId>org.openhab.addons.bundles</groupId>
831836
<artifactId>org.openhab.binding.homekit</artifactId>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
This content is produced and maintained by the openHAB project.
2+
3+
* Project home: https://www.openhab.org
4+
5+
== Declared Project Licenses
6+
7+
This program and the accompanying materials are made available under the terms
8+
of the Eclipse Public License 2.0 which is available at
9+
https://www.eclipse.org/legal/epl-2.0/.
10+
11+
== Source Code
12+
13+
https://github.com/openhab/openhab-addons
14+
15+
== Third-party Content
16+
17+
conscrypt
18+
* License: Apache License 2.0
19+
* Project: https://www.conscrypt.org/
20+
* Source: https://github.com/google/conscrypt
21+
22+
pico
23+
* License: MIT License
24+
* Project: https://picocss.com/
25+
* Source: https://github.com/picocss/pico
26+
27+
Alpine.js
28+
* License: MIT License
29+
* Project: https://alpinejs.dev/
30+
* Source: https://github.com/alpinejs/alpine
31+
32+
heroicons
33+
* License: MIT License
34+
* Project: https://heroicons.com/
35+
* Source: https://github.com/tailwindlabs/heroicons

bundles/org.openhab.binding.homeconnectdirect/README.md

Lines changed: 324 additions & 0 deletions
Large diffs are not rendered by default.
249 KB
Loading
220 KB
Loading
71 KB
Loading
175 KB
Loading
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>org.openhab.addons.bundles</groupId>
9+
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
10+
<version>5.2.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>org.openhab.binding.homeconnectdirect</artifactId>
14+
15+
<name>openHAB Add-ons :: Bundles :: Home Connect Direct Binding</name>
16+
17+
<properties>
18+
<bnd.importpackage>org.eclipse.jetty.websocket.server,android.util.*;resolution:="optional",sun.*;resolution:="optional"</bnd.importpackage>
19+
</properties>
20+
21+
<dependencies>
22+
<!-- Conscrypt Java Security Provider -->
23+
<dependency>
24+
<groupId>net.bruestel</groupId>
25+
<artifactId>conscrypt-openjdk-uber</artifactId>
26+
<version>2.6.0-20260113</version>
27+
<scope>compile</scope>
28+
</dependency>
29+
</dependencies>
30+
</project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<features name="org.openhab.binding.homeconnectdirect-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.4.0">
3+
<repository>mvn:org.openhab.core.features.karaf/org.openhab.core.features.karaf.openhab-core/${ohc.version}/xml/features</repository>
4+
5+
<feature name="openhab-binding-homeconnectdirect" description="Home Connect Direct Binding" version="${project.version}">
6+
<feature>openhab-runtime-base</feature>
7+
<bundle start-level="80">mvn:org.openhab.addons.bundles/org.openhab.binding.homeconnectdirect/${project.version}</bundle>
8+
</feature>
9+
</features>

0 commit comments

Comments
 (0)