mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 07:02:02 +01:00
639a1cb263
* Switch to 5.0.0-SNAPSHOT * Fix spotless after unleash * resolve itest runbundles Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
165 lines
5.2 KiB
XML
165 lines
5.2 KiB
XML
<?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>5.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.persistence.influxdb</artifactId>
|
|
|
|
<name>openHAB Add-ons :: Bundles :: Persistence Service :: InfluxDB</name>
|
|
|
|
<properties>
|
|
<bnd.importpackage>
|
|
!javax.annotation.*;!android.*,!com.android.*,!com.google.appengine.*,!dalvik.system,!kotlin.*,!kotlinx.*,!org.conscrypt,!sun.security.ssl,!org.apache.harmony.*,!org.apache.http.*,!rx.*,!org.msgpack.*,!org.bouncycastle.*,!org.openjsse.*
|
|
</bnd.importpackage>
|
|
<retrofit.version>2.10.0</retrofit.version>
|
|
<influx2.version>7.0.0</influx2.version>
|
|
<influx1.version>2.24</influx1.version>
|
|
<io.reactivex.rxjava3>3.1.8</io.reactivex.rxjava3>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- START InfluxDB 2.0 -->
|
|
<dependency>
|
|
<groupId>com.influxdb</groupId>
|
|
<artifactId>influxdb-client-java</artifactId>
|
|
<version>${influx2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.influxdb</groupId>
|
|
<artifactId>influxdb-client-utils</artifactId>
|
|
<version>${influx2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.influxdb</groupId>
|
|
<artifactId>influxdb-client-core</artifactId>
|
|
<version>${influx2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.influxdb</groupId>
|
|
<artifactId>flux-dsl</artifactId>
|
|
<version>${influx2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.influxdb</groupId>
|
|
<artifactId>influxdb-client-flux</artifactId>
|
|
<version>${influx2.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
<artifactId>converter-gson</artifactId>
|
|
<version>${retrofit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
<artifactId>converter-scalars</artifactId>
|
|
<version>${retrofit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>retrofit</artifactId>
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
<version>${retrofit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
<artifactId>adapter-rxjava3</artifactId>
|
|
<version>${retrofit.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>${okhttp3.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>logging-interceptor</artifactId>
|
|
<version>${okhttp3.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okio</groupId>
|
|
<artifactId>okio</artifactId>
|
|
<version>${okio.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okio</groupId>
|
|
<artifactId>okio-jvm</artifactId>
|
|
<version>${okio.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>${gson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.gsonfire</groupId>
|
|
<artifactId>gson-fire</artifactId>
|
|
<version>1.9.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>json</artifactId>
|
|
<groupId>org.json</groupId>
|
|
<version>20231013</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-csv</artifactId>
|
|
<version>1.10.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>reactive-streams</artifactId>
|
|
<groupId>org.reactivestreams</groupId>
|
|
<version>1.0.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<groupId>io.swagger</groupId>
|
|
<version>1.6.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.reactivex.rxjava3</groupId>
|
|
<artifactId>rxjava</artifactId>
|
|
<version>${io.reactivex.rxjava3}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-stdlib</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
|
<!--END InfluxDB 2.0 -->
|
|
|
|
<!--START InfluxDB 1.0 -->
|
|
<dependency>
|
|
<groupId>org.influxdb</groupId>
|
|
<artifactId>influxdb-java</artifactId>
|
|
<version>${influx1.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.retrofit2</groupId>
|
|
<artifactId>converter-moshi</artifactId>
|
|
<version>${retrofit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.moshi</groupId>
|
|
<artifactId>moshi</artifactId>
|
|
<version>1.15.1</version>
|
|
</dependency>
|
|
<!-- Okhttp & Retrofit from 2.0 are ok -->
|
|
|
|
<!-- END InfluxDB 1.0 -->
|
|
</dependencies>
|
|
|
|
|
|
</project>
|