2023-05-07 18:31:24 +02:00
|
|
|
<?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">
|
2020-09-21 01:58:32 +02:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.addons.itests</groupId>
|
|
|
|
<artifactId>org.openhab.addons.reactor.itests</artifactId>
|
2023-07-27 11:14:28 +02:00
|
|
|
<version>3.4.6-SNAPSHOT</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.binding.feed.tests</artifactId>
|
|
|
|
|
|
|
|
<name>openHAB Add-ons :: Integration Tests :: Feed Binding Tests</name>
|
|
|
|
|
|
|
|
<properties>
|
2020-10-30 20:27:09 +01:00
|
|
|
<rome.version>1.15.0</rome.version>
|
2020-09-21 01:58:32 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.addons.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.binding.feed</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
<artifactId>rome</artifactId>
|
2020-10-30 20:27:09 +01:00
|
|
|
<version>${rome.version}</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.servicemix.bundles</groupId>
|
|
|
|
<artifactId>org.apache.servicemix.bundles.jdom</artifactId>
|
|
|
|
<version>2.0.6_1</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|