openhab-addons/bundles/org.openhab.binding.mqtt.homeassistant/pom.xml

69 lines
2.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>4.3.0-SNAPSHOT</version>
</parent>
<artifactId>org.openhab.binding.mqtt.homeassistant</artifactId>
<name>openHAB Add-ons :: Bundles :: MQTT HomeAssistant Convention</name>
<dependencies>
<dependency>
<groupId>org.openhab.addons.bundles</groupId>
<artifactId>org.openhab.binding.mqtt</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openhab.addons.bundles</groupId>
<artifactId>org.openhab.binding.mqtt.generic</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.3.0-jre</version>
<scope>test</scope>
</dependency>
[mqtt-homeassistant] climate.mqtt support (#10690) * MQTT.Homeassistant Climate support Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant synthetic config test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant refactoring Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant discovery test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant thing handler test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant switch test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Climate test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant author header added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant copyright header added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant test fixed Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant test fixed Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant test infrastructure updated. Added tests with mqtt publishing and commands posting. Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant fixed Climate#send_if_off handling Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant do not filter the power command Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant climate unit test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * Update bundles/org.openhab.binding.mqtt.homeassistant/src/main/java/org/openhab/binding/mqtt/homeassistant/internal/DiscoverComponents.java Redundant annotation removed Co-authored-by: Fabian Wolter <github@fabian-wolter.de> * MQTT.Homeassistant Redundant @Nullable annotations removed Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Unit tests added for all components Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Unit tests stability fix Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant @NonNullByDefault removed from Device, config.dto package created Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Climate author added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Device.sw_version renamed Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant tests wait timeout increased to 10s Signed-off-by: Anton Kharuzhy <antroids@gmail.com> Co-authored-by: antroids <antroids@gmail.com> Co-authored-by: Fabian Wolter <github@fabian-wolter.de>
2021-08-15 11:48:26 +02:00
<dependency>
<groupId>org.openhab.osgiify</groupId>
<artifactId>com.hubspot.jinjava.jinjava</artifactId>
<version>2.7.3</version>
<scope>compile</scope>
[mqtt-homeassistant] climate.mqtt support (#10690) * MQTT.Homeassistant Climate support Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant synthetic config test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant refactoring Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant discovery test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant thing handler test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant switch test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Climate test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant author header added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant copyright header added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant test fixed Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant test fixed Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant test infrastructure updated. Added tests with mqtt publishing and commands posting. Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant fixed Climate#send_if_off handling Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant do not filter the power command Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant climate unit test added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * Update bundles/org.openhab.binding.mqtt.homeassistant/src/main/java/org/openhab/binding/mqtt/homeassistant/internal/DiscoverComponents.java Redundant annotation removed Co-authored-by: Fabian Wolter <github@fabian-wolter.de> * MQTT.Homeassistant Redundant @Nullable annotations removed Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Unit tests added for all components Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Unit tests stability fix Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant @NonNullByDefault removed from Device, config.dto package created Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Climate author added Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant Device.sw_version renamed Signed-off-by: Anton Kharuzhy <antroids@gmail.com> * MQTT.Homeassistant tests wait timeout increased to 10s Signed-off-by: Anton Kharuzhy <antroids@gmail.com> Co-authored-by: antroids <antroids@gmail.com> Co-authored-by: Fabian Wolter <github@fabian-wolter.de>
2021-08-15 11:48:26 +02:00
</dependency>
<dependency>
<groupId>org.openhab.osgiify</groupId>
<artifactId>com.google.re2j.re2j</artifactId>
<version>1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.obermuhlner</groupId>
<artifactId>big-math</artifactId>
<version>2.3.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
<version>${jackson.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openhab.osgiify</groupId>
<artifactId>com.hubspot.immutables.immutables-exceptions</artifactId>
<version>1.9</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>