-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
49 lines (39 loc) · 1.75 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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.1, 5.0]</version>
</parent>
<dependencies>
<dependency>
<groupId>com.open-meteo</groupId>
<artifactId>sdk</artifactId>
<version>1.10.0</version>
<scope>compile</scope>
</dependency>
<!-- force presence in final jar file, seems the "feature.xml" bundle dependency is not enough -->
<dependency>
<groupId>com.google.flatbuffers</groupId>
<artifactId>flatbuffers-java</artifactId>
<version>23.5.9</version>
<scope>compile</scope>
</dependency>
</dependencies>
<properties>
<!--
com.open-meteo depends on findbugs which has an invalid javax.annotation import requirement as it references a version
that does not exist
To workaround this, we replace the version requirement on the fly, as suggested on these pages:
https://github.com/LibrePDF/OpenPDF/issues/512
https://stackoverflow.com/questions/64568455/why-does-findbugs-jsr305-break-osgi-package-export-of-javax-annotations-in-redha
-->
<bnd.importpackage>javax.annotation;version="[1,4)"</bnd.importpackage>
</properties>
<artifactId>com.obones.binding.openmeteo</artifactId>
<name>openHAB Add-ons :: Bundles :: Open Meteo Binding</name>
<description>This binding integrates the Open Meteo weather foreceast service.</description>
<version>0.3.0</version>
</project>