<?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.itests</groupId> <artifactId>org.openhab.addons.reactor.itests</artifactId> <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>org.openhab.binding.mqtt.homeassistant.tests</artifactId> <name>openHAB Add-ons :: Integration Tests :: MQTT HomeAssistant Tests</name> <properties> <mqttbroker.port>1883</mqttbroker.port> </properties> <dependencies> <dependency> <groupId>org.openhab.addons.bundles</groupId> <artifactId>org.openhab.binding.mqtt</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.openhab.addons.bundles</groupId> <artifactId>org.openhab.binding.mqtt.generic</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.openhab.addons.bundles</groupId> <artifactId>org.openhab.binding.mqtt.homeassistant</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2-mvstore</artifactId> <version>1.4.199</version> </dependency> <dependency> <groupId>io.moquette</groupId> <artifactId>moquette-broker</artifactId> <version>0.15</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-mqtt</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler-proxy</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-resolver</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport</artifactId> <version>${netty.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>reserve-mqtt-broker-port</id> <goals> <goal>reserve-network-port</goal> </goals> <phase>process-resources</phase> <configuration> <portNames> <portName>mqttbroker.port</portName> </portNames> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>