组织ID: |
com.wavefront |
项目ID: |
wavefront-sdk-java |
版本: |
1.5 |
最后修改时间: |
2019-12-03 18:58:23 |
包类型: |
jar |
标题: |
Wavefront by VMware SDK for Java |
描述: |
Core library for sending telemetry data to Wavefront from Java applications. |
相关URL: |
https://github.com/wavefrontHQ/wavefront-sdk-java |
大小: |
102.03KB |
|
Maven引入代码: |
<dependency>
<groupId>com.wavefront</groupId>
<artifactId>wavefront-sdk-java</artifactId>
<version>1.5</version>
</dependency>
|
Gradle引入代码: |
com.wavefront:wavefront-sdk-java:1.5
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.wavefront</groupId>
<artifactId>wavefront-sdk-java</artifactId>
<name>Wavefront by VMware SDK for Java</name>
<version>1.5</version>
<description>Core library for sending telemetry data to Wavefront from Java applications.</description>
<url>https://github.com/wavefrontHQ/wavefront-sdk-java</url>
<developers>
<developer>
<name>Sushant Dewan</name>
<email>sushant@wavefront.com</email>
<organization>Wavefront</organization>
<organizationUrl>http://www.wavefront.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:wavefronthq/wavefront-sdk-java.git</connection>
<developerConnection>scm:git:git@github.com:wavefronthq/wavefront-sdk-java.git</developerConnection>
<tag>v1.5</tag>
<url>git@github.com:wavefronthq/wavefront-sdk-java.git</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<artifactSet>
<includes>
<include>com.tdunning:t-digest</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.tdunning.math</pattern>
<shadedPattern>com.wavefront.java-sdk.com.tdunning.math</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
<exclude>mozilla/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<useAgent>true</useAgent>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<executions>
<execution>
<id>injected-nexus-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</execution>
</executions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<gpg.useagent>true</gpg.useagent>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.3.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>apiguardian-api</artifactId>
<groupId>org.apiguardian</groupId>
</exclusion>
<exclusion>
<artifactId>opentest4j</artifactId>
<groupId>org.opentest4j</groupId>
</exclusion>
<exclusion>
<artifactId>junit-platform-commons</artifactId>
<groupId>org.junit.platform</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
|
Jar包内容: |
com.wavefront.sdk.Main$1.class
com.wavefront.sdk.entities.metrics.WavefrontMetricSender.class
com.wavefront.sdk.entities.events.WavefrontEventSender.class
com.wavefront.sdk.entities.histograms.WavefrontHistogramImpl$MinuteBin.class
com.wavefront.sdk.entities.histograms.WavefrontHistogramImpl$Snapshot.class
com.wavefront.sdk.entities.histograms.WavefrontHistogramImpl$Distribution.class
com.wavefront.sdk.entities.histograms.HistogramGranularity.class
com.wavefront.sdk.entities.histograms.WavefrontHistogramImpl.class
com.wavefront.sdk.entities.histograms.WavefrontHistogramSender.class
com.wavefront.sdk.entities.tracing.WavefrontTracingSpanSender.class
com.wavefront.sdk.entities.tracing.SpanLog.class
com.wavefront.sdk.entities.tracing.sampling.RateSampler.class
com.wavefront.sdk.entities.tracing.sampling.DurationSampler.class
com.wavefront.sdk.entities.tracing.sampling.CompositeSampler.class
com.wavefront.sdk.entities.tracing.sampling.ConstantSampler.class
com.wavefront.sdk.entities.tracing.sampling.Sampler.class
com.wavefront.sdk.Main$5.class
com.wavefront.sdk.Main$4.class
com.wavefront.sdk.Main$3.class
com.wavefront.sdk.direct.ingestion.DataIngesterService.class
com.wavefront.sdk.direct.ingestion.DataIngesterAPI.class
com.wavefront.sdk.direct.ingestion.WavefrontDirectIngestionClient$1.class
com.wavefront.sdk.direct.ingestion.WavefrontDirectIngestionClient$Builder.class
com.wavefront.sdk.direct.ingestion.WavefrontDirectIngestionClient.class
com.wavefront.sdk.Main$6.class
com.wavefront.sdk.common.NamedThreadFactory.class
com.wavefront.sdk.common.metrics.WavefrontSdkCounter.class
com.wavefront.sdk.common.metrics.WavefrontSdkMetricsRegistry$Builder.class
com.wavefront.sdk.common.metrics.WavefrontSdkGauge.class
com.wavefront.sdk.common.metrics.WavefrontSdkMetric.class
com.wavefront.sdk.common.metrics.WavefrontSdkMetricsRegistry$1.class
com.wavefront.sdk.common.metrics.WavefrontSdkMetricsRegistry.class
com.wavefront.sdk.common.ReconnectingSocket$1.class
com.wavefront.sdk.common.Utils.class
com.wavefront.sdk.common.Pair.class
com.wavefront.sdk.common.annotation.Nullable.class
com.wavefront.sdk.common.annotation.NonNull.class
com.wavefront.sdk.common.Constants.class
com.wavefront.sdk.common.WavefrontSender.class
com.wavefront.sdk.common.BufferFlusher.class
com.wavefront.sdk.common.ReconnectingSocket.class
com.wavefront.sdk.common.application.ApplicationTags.class
com.wavefront.sdk.common.application.ApplicationTags$1.class
com.wavefront.sdk.common.application.ApplicationTags$Builder.class
com.wavefront.sdk.common.application.HeartbeaterService.class
com.wavefront.sdk.common.application.HeartbeaterService$1.class
com.wavefront.sdk.Main$2.class
com.wavefront.sdk.proxy.WavefrontProxyClient.class
com.wavefront.sdk.proxy.ProxyConnectionHandler.class
com.wavefront.sdk.proxy.WavefrontProxyClient$Builder.class
com.wavefront.sdk.proxy.WavefrontProxyClient$1.class
com.wavefront.sdk.Main.class
com.wavefront.java-sdk.com.tdunning.math.stats.AbstractTDigest.class
com.wavefront.java-sdk.com.tdunning.math.stats.AVLGroupTree$1.class
com.wavefront.java-sdk.com.tdunning.math.stats.AVLGroupTree$2.class
com.wavefront.java-sdk.com.tdunning.math.stats.AVLGroupTree.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
jsr305-3.0.2.jar
/com.google.code.findbugs/jsr305/3.0.2
查看jsr305所有版本文件
junit-jupiter-api-5.3.1.jar
/org.junit.jupiter/junit-jupiter-api/5.3.1
查看junit-jupiter-api所有版本文件
|