MVN

edu.princeton.cs : randomhash

Maven & Gradle

Jun 29, 2022
9 stars

randomhash · A simple, time-tested, family of random hash functions in Java, based on CRC32, affine transformations, and the Mersenne Twister, suitable for use in production probabilistic data streaming algorithms like HyperLogLog.

<dependency>
    <groupId>edu.princeton.cs</groupId>
    <artifactId>randomhash</artifactId>
    <version>1.1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of edu.princeton.cs : randomhash to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1.1

All Versions

Choose a version of edu.princeton.cs : randomhash to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1.x
randomhash-1.1.1
randomhash-1.1.0

How to add a dependency to Maven

Add the following edu.princeton.cs : randomhash maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>edu.princeton.cs</groupId>
    <artifactId>randomhash</artifactId>
    <version>1.1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following edu.princeton.cs : randomhash gradle dependency to your build.gradle file:

implementation 'edu.princeton.cs:randomhash:1.1.1'

Gradle Kotlin DSL: Add the following edu.princeton.cs : randomhash gradle kotlin dependency to your build.gradle.kts file:

implementation("edu.princeton.cs:randomhash:1.1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following edu.princeton.cs : randomhash sbt scala dependency to your build.sbt file:

libraryDependencies += "edu.princeton.cs" % "randomhash" % "1.1.1"

Advertisement