mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-02-10 06:17:03 +01:00
This is a port of the SmartHome/J binding by @J-N-K Changes from that binding: * Use BaseDynamicDescriptionProvider from core, rather than SmartHome/J's commons.SimpleDynamicDescriptionProvider * Generated i18n properties file * Minor wording tweak in the README Co-authored-by: Jan N. Klug <github@klug.nrw> Co-authored-by: jsetton <jeremy.setton@gmail.com> Co-authored-by: Jimmy Tanagra <jcode@tanagra.id.au> Signed-off-by: Cody Cutrer <cody@cutrer.us>
31 lines
889 B
XML
31 lines
889 B
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab.addons.bundles</groupId>
|
|
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
|
|
<version>5.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.binding.tuya</artifactId>
|
|
|
|
<name>openHAB Add-ons :: Bundles :: Tuya Binding</name>
|
|
|
|
<properties>
|
|
<dep.noembedding>netty-common</dep.noembedding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-common</artifactId>
|
|
<version>${netty.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|