组织ID: |
org.influxdb |
项目ID: |
influxdb-java |
版本: |
2.5 |
最后修改时间: |
2018-08-01 10:56:13 |
包类型: |
jar |
标题: |
influxdb java bindings |
描述: |
Java API to access the InfluxDB REST API |
相关URL: |
http://www.influxdb.org |
大小: |
39.83KB |
|
Maven引入代码: |
<dependency>
<groupId>org.influxdb</groupId>
<artifactId>influxdb-java</artifactId>
<version>2.5</version>
</dependency>
|
Gradle引入代码: |
org.influxdb:influxdb-java:2.5
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.influxdb</groupId>
<artifactId>influxdb-java</artifactId>
<packaging>jar</packaging>
<version>2.5</version>
<name>influxdb java bindings</name>
<description>Java API to access the InfluxDB REST API</description>
<url>http://www.influxdb.org</url>
<prerequisites>
<maven>3.2.1</maven>
</prerequisites>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:git@github.com:influxdata/influxdb-java.git</connection>
<developerConnection>scm:git:git@github.com:influxdata/influxdb-java.git</developerConnection>
<url>git@github.com:influxdata/influxdb-java.git</url>
</scm>
<developers>
<developer>
<id>majst01</id>
<name>Stefan Majer</name>
<email>stefan.majer@gmail.com</email>
</developer>
</developers>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.4</version>
<configuration>
<xmlOutput>true</xmlOutput>
<!-- Optional directory to put findbugs xdoc xml report -->
<xmlOutputDirectory>target/site</xmlOutputDirectory>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<configuration>
<failsOnError>true</failsOnError>
<configLocation>checkstyle.xml</configLocation>
<consoleOutput>true</consoleOutput>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>2.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.2.21</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.21</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-moshi</artifactId>
<version>2.1.0</version>
</dependency>
<!-- If we use okhttp instead of java urlconnection we achieve server failover
of the influxdb server address resolves to all influxdb server ips. -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>3.5.0</version>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.influxdb.dto.BatchPoints$Builder.class
org.influxdb.dto.BatchPoints.class
org.influxdb.dto.Point$Builder.class
org.influxdb.dto.Point.class
org.influxdb.dto.Pong.class
org.influxdb.dto.Query.class
org.influxdb.dto.QueryResult$Result.class
org.influxdb.dto.QueryResult$Series.class
org.influxdb.dto.QueryResult.class
org.influxdb.impl.BatchProcessor$1.class
org.influxdb.impl.BatchProcessor$2.class
org.influxdb.impl.BatchProcessor$AbstractBatchEntry.class
org.influxdb.impl.BatchProcessor$Builder.class
org.influxdb.impl.BatchProcessor$HttpBatchEntry.class
org.influxdb.impl.BatchProcessor$UdpBatchEntry.class
org.influxdb.impl.BatchProcessor.class
org.influxdb.impl.GzipRequestInterceptor$1.class
org.influxdb.impl.GzipRequestInterceptor.class
org.influxdb.impl.InfluxDBImpl$1.class
org.influxdb.impl.InfluxDBImpl.class
org.influxdb.impl.InfluxDBService.class
org.influxdb.impl.TimeUtil$1.class
org.influxdb.impl.TimeUtil.class
org.influxdb.InfluxDB$ConsistencyLevel.class
org.influxdb.InfluxDB$LogLevel.class
org.influxdb.InfluxDB.class
org.influxdb.InfluxDBFactory.class
META-INF/maven/org.influxdb/influxdb-java/pom.xml
META-INF/maven/org.influxdb/influxdb-java/pom.properties
|
依赖Jar: |
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
assertj-core-2.6.0.jar
/org.assertj/assertj-core/2.6.0
查看assertj-core所有版本文件
mockito-core-2.2.21.jar
/org.mockito/mockito-core/2.2.21
查看mockito-core所有版本文件
slf4j-simple-1.7.21.jar
/org.slf4j/slf4j-simple/1.7.21
查看slf4j-simple所有版本文件
guava-20.0.jar
/com.google.guava/guava/20.0
查看guava所有版本文件
retrofit-2.1.0.jar
/com.squareup.retrofit2/retrofit/2.1.0
查看retrofit所有版本文件
converter-moshi-2.1.0.jar
/com.squareup.retrofit2/converter-moshi/2.1.0
查看converter-moshi所有版本文件
okhttp-3.5.0.jar
/com.squareup.okhttp3/okhttp/3.5.0
查看okhttp所有版本文件
logging-interceptor-3.5.0.jar
/com.squareup.okhttp3/logging-interceptor/3.5.0
查看logging-interceptor所有版本文件
|