2024-12-15 20:30:05 +01: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-11-23 10:43:44 +01:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.addons.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
|
2024-12-15 20:30:05 +01:00
|
|
|
<version>5.0.0-SNAPSHOT</version>
|
2020-11-23 10:43:44 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.binding.bluetooth.generic</artifactId>
|
|
|
|
|
|
|
|
<name>openHAB Add-ons :: Bundles :: Generic Bluetooth Adapter</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.addons.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.binding.bluetooth</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-07-19 17:58:25 +02:00
|
|
|
<groupId>org.openhab</groupId>
|
2020-11-23 10:43:44 +01:00
|
|
|
<artifactId>bluetooth-gatt-parser</artifactId>
|
2024-01-04 23:52:44 +01:00
|
|
|
<version>2.1.0</version>
|
2020-11-23 10:43:44 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<version>3.2.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
2022-03-07 21:31:13 +01:00
|
|
|
<version>1.9.4</version>
|
2020-11-23 10:43:44 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-07-19 17:58:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2024-03-29 09:43:32 +01:00
|
|
|
<version>${gson.version}</version>
|
2022-07-19 17:58:25 +02:00
|
|
|
</dependency>
|
2020-11-23 10:43:44 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2022-07-19 17:58:25 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.openhab.tools.sat</groupId>
|
|
|
|
<artifactId>sat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<spotbugsExclude>${project.basedir}/suppressions.xml</spotbugsExclude>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-11-23 10:43:44 +01:00
|
|
|
</project>
|