[bluetooth] Switch to fork of gatt parser library in order to fix incompatibility with xstream (#13128)

* Switch to fork of gatt parser library in order to fix incompatibility with xstream
* Add SAT suppressions
* Add gson dependency

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer
2022-07-19 17:58:25 +02:00
committed by GitHub
parent 7920dd6d48
commit d814640727
5 changed files with 47 additions and 20 deletions

View File

@@ -22,9 +22,9 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.sputnikdev</groupId>
<groupId>org.openhab</groupId>
<artifactId>bluetooth-gatt-parser</artifactId>
<version>1.9.4</version>
<version>2.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
@@ -39,6 +39,23 @@
<version>1.9.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.9.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.openhab.tools.sat</groupId>
<artifactId>sat-plugin</artifactId>
<configuration>
<spotbugsExclude>${project.basedir}/suppressions.xml</spotbugsExclude>
</configuration>
</plugin>
</plugins>
</build>
</project>