[influxdb] Code improvements and enhancements (#14304)
* [influxdb] code improvements Signed-off-by: Jan N. Klug <github@klug.nrw>
This commit is contained in:
@@ -16,82 +16,87 @@
|
||||
|
||||
<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.*
|
||||
!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.*
|
||||
</bnd.importpackage>
|
||||
<okhttp3.version>3.14.9</okhttp3.version>
|
||||
<retrofit.version>2.7.2</retrofit.version>
|
||||
<influx2.version>1.15.0</influx2.version>
|
||||
<influx1.version>2.21</influx1.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<!-- START InfluxDB 2.0 -->
|
||||
<!-- START influxdb-client-java -->
|
||||
<dependency>
|
||||
<groupId>com.influxdb</groupId>
|
||||
<artifactId>influxdb-client-java</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>${influx2.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>influxdb-client-core</artifactId>
|
||||
<groupId>com.influxdb</groupId>
|
||||
<version>1.6.0</version>
|
||||
<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.squareup.retrofit2</groupId>
|
||||
<artifactId>converter-gson</artifactId>
|
||||
<groupId>com.squareup.retrofit2</groupId>
|
||||
<version>2.5.0</version>
|
||||
<version>${retrofit.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.squareup.retrofit2</groupId>
|
||||
<artifactId>converter-scalars</artifactId>
|
||||
<groupId>com.squareup.retrofit2</groupId>
|
||||
<version>2.5.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>gson</artifactId>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<version>2.9.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>gson-fire</artifactId>
|
||||
<groupId>io.gsonfire</groupId>
|
||||
<version>1.8.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>okio</artifactId>
|
||||
<groupId>com.squareup.okio</groupId>
|
||||
<version>1.17.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>commons-csv</artifactId>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<version>1.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>json</artifactId>
|
||||
<groupId>org.json</groupId>
|
||||
<version>20180813</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>okhttp</artifactId>
|
||||
<groupId>com.squareup.okhttp3</groupId>
|
||||
<version>${okhttp.version}</version>
|
||||
<version>${retrofit.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>retrofit</artifactId>
|
||||
<groupId>com.squareup.retrofit2</groupId>
|
||||
<version>2.6.2</version>
|
||||
<version>${retrofit.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<version>3.0.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>logging-interceptor</artifactId>
|
||||
<groupId>com.squareup.okhttp3</groupId>
|
||||
<version>${okhttp.version}</version>
|
||||
<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.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<version>2.9.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.gsonfire</groupId>
|
||||
<artifactId>gson-fire</artifactId>
|
||||
<version>1.8.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.squareup.okio</groupId>
|
||||
<artifactId>okio</artifactId>
|
||||
<version>1.17.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-csv</artifactId>
|
||||
<version>1.8</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>json</artifactId>
|
||||
<groupId>org.json</groupId>
|
||||
<version>20200518</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>rxjava</artifactId>
|
||||
<groupId>io.reactivex.rxjava2</groupId>
|
||||
<version>2.2.17</version>
|
||||
<version>2.2.19</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>reactive-streams</artifactId>
|
||||
@@ -101,29 +106,20 @@
|
||||
<dependency>
|
||||
<artifactId>swagger-annotations</artifactId>
|
||||
<groupId>io.swagger</groupId>
|
||||
<version>1.5.22</version>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
<!--END influxdb-client-java -->
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>com.influxdb</groupId>
|
||||
<artifactId>flux-dsl</artifactId>
|
||||
<version>1.6.0</version>
|
||||
</dependency>
|
||||
|
||||
<!--END InfluxDB 2.0 -->
|
||||
|
||||
<!--START InfluxDB 1.0 -->
|
||||
<dependency>
|
||||
<groupId>org.influxdb</groupId>
|
||||
<artifactId>influxdb-java</artifactId>
|
||||
<version>2.17</version>
|
||||
<version>${influx1.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.squareup.retrofit2</groupId>
|
||||
<artifactId>converter-moshi</artifactId>
|
||||
<version>2.6.2</version>
|
||||
<version>${retrofit.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.squareup.moshi</groupId>
|
||||
@@ -135,4 +131,5 @@
|
||||
<!-- END InfluxDB 1.0 -->
|
||||
</dependencies>
|
||||
|
||||
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user