Download hll-1.6.0.jar file

Introduction

You can download hll-1.6.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

hll-1.6.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.agkn/hll/pom.properties
META-INF/maven/net.agkn/hll/pom.xml
net.agkn.hll.HLL.class
net.agkn.hll.HLLType.class
net.agkn.hll.serialization.BigEndianAscendingWordDeserializer.class
net.agkn.hll.serialization.BigEndianAscendingWordSerializer.class
net.agkn.hll.serialization.HLLMetadata.class
net.agkn.hll.serialization.IHLLMetadata.class
net.agkn.hll.serialization.ISchemaVersion.class
net.agkn.hll.serialization.IWordDeserializer.class
net.agkn.hll.serialization.IWordSerializer.class
net.agkn.hll.serialization.SchemaVersionOne.class
net.agkn.hll.serialization.SerializationUtil.class
net.agkn.hll.util.BitUtil.class
net.agkn.hll.util.BitVector.class
net.agkn.hll.util.HLLUtil.class
net.agkn.hll.util.LongIterator.class
net.agkn.hll.util.NumberUtil.class

Pom

hll-1.6.0.pom file content.

<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>net.agkn</groupId>
    <artifactId>hll</artifactId>
    <packaging>jar</packaging>
    <description>HyperLogLog: approximate distinct value counting algoritm</description>
    <url>https://github.com/aggregateknowledge/java-hll</url>
    <version>1.6.0</version>
    <name>HyperLogLog in Java</name>
    <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:git@github.com:aggregateknowledge/java-hll.git</connection>
        <url>scm:git:git@github.com:aggregateknowledge/java-hll.git</url>
        <developerConnection>scm:git:git@github.com:aggregateknowledge/java-hll.git</developerConnection>
    </scm>
    <developers>
        <developer>
            <id>timonk</id>
            <name>Timon Karnezos</name>
            <email>timon.karnezos@neustar.biz</email>
        </developer>
    </developers>

    <!-- ================================================================== -->
    <build>
        <finalName>${project.artifactId}-${project.version}</finalName>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</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-gpg-plugin</artifactId>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <!-- .......................................................... -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.16</version>
                <configuration/>
            </plugin>

        </plugins>
    </build>

    <profiles>
      <profile>
        <id>release-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>
              <executions>
                <execution>
                  <id>sign-artifacts</id>
                  <phase>verify</phase>
                  <goals>
                    <goal>sign</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
          </plugins>
        </build>
      </profile>
    </profiles>

    <distributionManagement>
        <snapshotRepository>
            <id>sonatype-nexus-snapshots</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
            <id>sonatype-nexus-staging</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <!-- ================================================================== -->
    <!-- NOTE:  all version numbers are defined in the properties section -->
    <dependencies>
        <!-- Production dependencies :: Default scope -->
        <dependency>
            <groupId>it.unimi.dsi</groupId>
            <artifactId>fastutil</artifactId>
            <version>${fastutil-version}</version>
        </dependency>

        <!-- Test dependencies :: Test scope -->
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>${easymock-version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>${powermock-version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-easymock</artifactId>
            <version>${powermock-version}</version>
            <scope>test</scope>
        </dependency>
        <!-- NOTE:  the "jdk15" classifier is "JDK 1.5+" -->
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>${testng-version}</version>
            <scope>test</scope>
            <classifier>jdk15</classifier>
        </dependency>
    </dependencies>

    <!-- ================================================================== -->
    <properties>
        <!-- Production scope -->
        <commons-codec-version>1.8</commons-codec-version>

        <!-- Testing versions -->
        <easymock-version>3.0</easymock-version>
        <powermock-version>1.4.8</powermock-version>
        <testng-version>5.7</testng-version>
        <fastutil-version>6.5.11</fastutil-version>
    </properties>
</project>

POM Entry

<dependency>
   <groupId>net.agkn</groupId>
   <artifactId>hll</artifactId>
   <version>1.6.0</version>
</dependency>

Download

If you think the following hll-1.6.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download hll-1.6.0.jar file




PreviousNext

Related