组织ID: |
org.influxdb |
项目ID: |
influxdb-java |
版本: |
2.17 |
最后修改时间: |
2019-12-07 16:06:26 |
包类型: |
jar |
标题: |
influxdb java bindings |
描述: |
Java API to access the InfluxDB REST API |
相关URL: |
http://www.influxdb.org |
大小: |
154.71KB |
|
Maven引入代码: |
<dependency>
<groupId>org.influxdb</groupId>
<artifactId>influxdb-java</artifactId>
<version>2.17</version>
</dependency>
|
Gradle引入代码: |
org.influxdb:influxdb-java:2.17
|
下载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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.influxdb</groupId>
<artifactId>influxdb-java</artifactId>
<packaging>jar</packaging>
<version>2.17</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.3.9</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>
<tag>influxdb-java-2.17</tag>
</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.5</version>
<configuration>
<xmlOutput>true</xmlOutput>
<!-- Optional directory to put findbugs xdoc xml report -->
<xmlOutputDirectory>target/site</xmlOutputDirectory>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>docker-compose.yml</exclude>
</excludes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<source>8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.4</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>3.0.0</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>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<!--
During release:perform, enable the "release" profile
-->
<releaseProfiles>release</releaseProfiles>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>1.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.14.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.6.2</version>
<exclusions>
<exclusion>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-moshi</artifactId>
<version>2.6.2</version>
<exclusions>
<exclusion>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.msgpack</groupId>
<artifactId>msgpack-core</artifactId>
<version>0.8.18</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.14.4</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>3.14.4</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<properties>
<image>influxdb:alpine</image>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>docker-compose.yml</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.dkanejs.maven.plugins</groupId>
<artifactId>docker-compose-maven-plugin</artifactId>
<version>2.4.0</version>
<executions>
<execution>
<id>up</id>
<phase>process-test-resources</phase>
<goals>
<goal>up</goal>
</goals>
<configuration>
<composeFile>${project.build.directory}/docker-compose.yml</composeFile>
<detachedMode>true</detachedMode>
</configuration>
</execution>
<execution>
<id>down</id>
<phase>post-integration-test</phase>
<goals>
<goal>down</goal>
</goals>
<configuration>
<composeFile>${project.build.directory}/docker-compose.yml</composeFile>
<removeVolumes>true</removeVolumes>
</configuration>
</execution>
</executions>
</plugin>
<!-- This is needed at release time only with the keys of a person -->
<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>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.influxdb.dto.BatchPoints$Builder.class
org.influxdb.dto.Point.class
org.influxdb.dto.Pong.class
org.influxdb.dto.BoundParameterQuery$QueryBuilder.class
org.influxdb.dto.BoundParameterQuery.class
org.influxdb.impl.BatchWriter.class
org.influxdb.impl.OneShotBatchWriter.class
org.influxdb.impl.InfluxDBImpl$ChunkProccesor.class
org.influxdb.impl.BatchProcessor$AbstractBatchEntry.class
org.influxdb.impl.BatchProcessor$Builder.class
org.influxdb.impl.InfluxDBResultMapper.class
org.influxdb.InfluxDBException$PointsBeyondRetentionPolicyException.class
org.influxdb.querybuilder.SelectWithSubquery.class
org.influxdb.querybuilder.WhereQueryImpl.class
org.influxdb.querybuilder.clauses.FromClause.class
org.influxdb.querybuilder.clauses.AddRelativeTimeClause.class
org.influxdb.querybuilder.clauses.SelectRegexClause.class
org.influxdb.querybuilder.clauses.RelativeTimeClause.class
org.influxdb.querybuilder.clauses.SimpleClause.class
org.influxdb.querybuilder.WhereCoreImpl.class
org.influxdb.querybuilder.Where.class
org.influxdb.InfluxDBIOException.class
org.influxdb.annotation.Measurement.class
org.influxdb.InfluxDB$ResponseFormat.class
META-INF/maven/org.influxdb/influxdb-java/pom.xml
org.influxdb.dto.QueryResult$Series.class
org.influxdb.impl.InfluxDBImpl$3.class
org.influxdb.impl.InfluxDBImpl$ErrorMessage.class
org.influxdb.impl.RetryCapableBatchWriter$WriteResult.class
org.influxdb.impl.RetryCapableBatchWriter$1.class
org.influxdb.impl.RetryCapableBatchWriter.class
org.influxdb.msgpack.MessagePackConverterFactory.class
org.influxdb.querybuilder.SelectionSubQueryImpl.class
org.influxdb.querybuilder.clauses.MultipleFromClause.class
org.influxdb.querybuilder.clauses.NestedClause.class
org.influxdb.querybuilder.clauses.RawTextClause.class
org.influxdb.querybuilder.Ordering.class
org.influxdb.querybuilder.Function.class
org.influxdb.InfluxDB$ConsistencyLevel.class
org.influxdb.BuilderException.class
org.influxdb.dto.BoundParameterQuery$1.class
org.influxdb.impl.GzipRequestInterceptor$1.class
org.influxdb.impl.TimeUtil.class
org.influxdb.impl.InfluxDBImpl$2$1.class
org.influxdb.impl.InfluxDBService.class
org.influxdb.msgpack.MessagePackTraverser$1.class
org.influxdb.querybuilder.FunctionFactory.class
org.influxdb.querybuilder.clauses.SubQueryFromClause.class
org.influxdb.querybuilder.clauses.SubRelativeTimeClause.class
org.influxdb.querybuilder.Column.class
org.influxdb.querybuilder.QueryStringBuilder.class
org.influxdb.BatchOptions.class
org.influxdb.InfluxDBFactory.class
org.influxdb.InfluxDB$Cancellable.class
org.influxdb.dto.BatchPoints.class
org.influxdb.impl.GzipRequestInterceptor.class
org.influxdb.impl.InfluxDBImpl$1.class
org.influxdb.impl.InfluxDBMapper.class
org.influxdb.impl.BatchProcessor$1.class
org.influxdb.impl.BatchProcessor$2.class
org.influxdb.msgpack.MessagePackTraverser.class
org.influxdb.querybuilder.SelectionCoreImpl.class
org.influxdb.querybuilder.WhereSubQueryImpl.class
org.influxdb.querybuilder.Distinct.class
org.influxdb.querybuilder.time.TimeInterval.class
org.influxdb.querybuilder.clauses.RawFromClause.class
org.influxdb.querybuilder.clauses.OperationClause.class
org.influxdb.querybuilder.BuiltQuery.class
org.influxdb.InfluxDBException$HintedHandOffQueueNotEmptyException.class
org.influxdb.InfluxDBException.class
org.influxdb.InfluxDBMapperException.class
org.influxdb.dto.Point$Builder.class
org.influxdb.impl.InfluxDBImpl$MessagePackChunkProccesor.class
org.influxdb.impl.InfluxDBImpl$2.class
org.influxdb.impl.RetryCapableBatchWriter$WriteResultOutcome.class
org.influxdb.impl.InfluxDBImpl$JSONChunkProccesor.class
org.influxdb.impl.TimeUtil$1.class
org.influxdb.msgpack.MessagePackResponseBodyConverter.class
org.influxdb.querybuilder.SelectSubQueryImpl.class
org.influxdb.querybuilder.TimeZone.class
org.influxdb.querybuilder.clauses.SimpleFromClause.class
org.influxdb.querybuilder.clauses.AbstractClause.class
org.influxdb.querybuilder.WhereNested.class
org.influxdb.querybuilder.Selection.class
org.influxdb.querybuilder.SelectQueryImpl.class
org.influxdb.InfluxDBException$UnableToParseException.class
org.influxdb.InfluxDB.class
org.influxdb.InfluxDBException$DatabaseNotFoundException.class
org.influxdb.dto.QueryResult$Result.class
org.influxdb.impl.BatchProcessor$HttpBatchEntry.class
org.influxdb.impl.Preconditions.class
org.influxdb.impl.BasicAuthInterceptor.class
org.influxdb.impl.TimeUtil$2.class
org.influxdb.impl.TimeUtil$3.class
org.influxdb.querybuilder.WithSubquery.class
org.influxdb.querybuilder.Alias.class
org.influxdb.querybuilder.clauses.RegexClause.class
org.influxdb.querybuilder.clauses.ContainsClause.class
org.influxdb.querybuilder.clauses.Clause.class
org.influxdb.querybuilder.Operations.class
org.influxdb.querybuilder.Select.class
org.influxdb.querybuilder.Appender.class
org.influxdb.querybuilder.SelectCoreImpl.class
org.influxdb.InfluxDBException$ErrorMessage.class
META-INF/maven/org.influxdb/influxdb-java/pom.properties
org.influxdb.dto.QueryResult.class
org.influxdb.impl.InfluxDBImpl.class
org.influxdb.msgpack.MessagePackTraverser$2.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
junit-jupiter-engine-5.5.2.jar
/org.junit.jupiter/junit-jupiter-engine/5.5.2
查看junit-jupiter-engine所有版本文件
junit-platform-runner-1.5.2.jar
/org.junit.platform/junit-platform-runner/1.5.2
查看junit-platform-runner所有版本文件
hamcrest-all-1.3.jar
/org.hamcrest/hamcrest-all/1.3
查看hamcrest-all所有版本文件
assertj-core-3.14.0.jar
/org.assertj/assertj-core/3.14.0
查看assertj-core所有版本文件
mockito-core-3.1.0.jar
/org.mockito/mockito-core/3.1.0
查看mockito-core所有版本文件
retrofit-2.6.2.jar
/com.squareup.retrofit2/retrofit/2.6.2
查看retrofit所有版本文件
converter-moshi-2.6.2.jar
/com.squareup.retrofit2/converter-moshi/2.6.2
查看converter-moshi所有版本文件
msgpack-core-0.8.18.jar
/org.msgpack/msgpack-core/0.8.18
查看msgpack-core所有版本文件
okhttp-3.14.4.jar
/com.squareup.okhttp3/okhttp/3.14.4
查看okhttp所有版本文件
logging-interceptor-3.14.4.jar
/com.squareup.okhttp3/logging-interceptor/3.14.4
查看logging-interceptor所有版本文件
|