组织ID: |
com.tdunning |
项目ID: |
t-digest |
版本: |
2.0.1 |
最后修改时间: |
2019-10-24 06:28:04 |
包类型: |
jar |
标题: |
T-Digest |
描述: |
Data structure which allows accurate estimation of quantiles and related rank statistics |
相关URL: |
https://github.com/tdunning/t-digest |
大小: |
31.94KB |
|
Maven引入代码: |
<dependency>
<groupId>com.tdunning</groupId>
<artifactId>t-digest</artifactId>
<version>2.0.1</version>
</dependency>
|
Gradle引入代码: |
com.tdunning:t-digest:2.0.1
|
下载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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tdunning</groupId>
<artifactId>t-digest</artifactId>
<version>2.0.1</version>
<packaging>jar</packaging>
<name>T-Digest</name>
<description>Data structure which allows accurate estimation of quantiles and related rank statistics</description>
<url>https://github.com/tdunning/t-digest</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/tdunning/t-digest.git</connection>
<developerConnection>scm:git:https://github.com/tdunning/t-digest.git</developerConnection>
<tag>t-digest-2.0.1</tag>
<url>https://github.com/tdunning/t-digest</url>
</scm>
<developers>
<developer>
<id>tdunning</id>
<name>Ted</name>
<email>ted.dunning@gmail.com</email>
<url>https://github.com/tdunning/t-digest</url>
<roles>
<role>developer</role>
</roles>
<timezone>-8</timezone>
<properties>
<twitter>@ted_dunning</twitter>
</properties>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout-math</artifactId>
<version>0.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.clearspring.analytics</groupId>
<artifactId>stream</artifactId>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<configuration>
<parallel>methods</parallel>
<perCoreThreadCount>true</perCoreThreadCount>
<threadCount>1</threadCount>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<verbose>true</verbose>
<compilerVersion>1.7</compilerVersion>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<arguments>-Dgpg.keyname=${gpg.keyname}</arguments>
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Nexus release repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<configuration>
<passphrase>${gpg.passphrase}</passphrase>
<keyname>${gpg.keyname}</keyname>
</configuration>
<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
com.tdunning.math.stats.AbstractTDigest.class
com.tdunning.math.stats.ArrayDigest$1.class
com.tdunning.math.stats.ArrayDigest$2.class
com.tdunning.math.stats.ArrayDigest$3.class
com.tdunning.math.stats.ArrayDigest$Index.class
com.tdunning.math.stats.ArrayDigest$Page.class
com.tdunning.math.stats.ArrayDigest.class
com.tdunning.math.stats.Centroid.class
com.tdunning.math.stats.GroupTree$1.class
com.tdunning.math.stats.GroupTree$2.class
com.tdunning.math.stats.GroupTree.class
com.tdunning.math.stats.TDigest.class
com.tdunning.math.stats.TreeDigest.class
META-INF/maven/com.tdunning/t-digest/pom.xml
META-INF/maven/com.tdunning/t-digest/pom.properties
|
依赖Jar: |
mahout-math-0.9.jar
/org.apache.mahout/mahout-math/0.9
查看mahout-math所有版本文件
stream-2.5.1.jar
/com.clearspring.analytics/stream/2.5.1
查看stream所有版本文件
junit-4.8.2.jar
/junit/junit/4.8.2
查看junit所有版本文件
|