MVN

io.github.kgsnipes : unum

Maven & Gradle

Nov 02, 2021
0 stars

unum - Unique Number Generator · With distributed systems being developed as a part of the cloud age. With focus on performance associated with an application dependent on one DB instance, there is a need to bring down the dependency to a database to generate unique numbers for creating a private key when lots of data needs to be stored in the database tables. This library is intended to provide a way of generating unique numbers on the fly in a JAVA based distributed system. This is not a new concept but this library helps in keeping you focused on the business logic that you need to develop for your applications rather than spending time on how this is done. Typically applications powered by RDBMS can leverage the benefit as instant scalability might not be available for these setups when the load to the system spikes.

<dependency>
    <groupId>io.github.kgsnipes</groupId>
    <artifactId>unum</artifactId>
    <version>1.03</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.kgsnipes : unum to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.03

All Versions

Choose a version of io.github.kgsnipes : unum to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.03
unum-1.03
1.02
unum-1.02
1.01
unum-1.01
1.0
unum-1.0

How to add a dependency to Maven

Add the following io.github.kgsnipes : unum maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.kgsnipes</groupId>
    <artifactId>unum</artifactId>
    <version>1.03</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.kgsnipes : unum gradle dependency to your build.gradle file:

implementation 'io.github.kgsnipes:unum:1.03'

Gradle Kotlin DSL: Add the following io.github.kgsnipes : unum gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.kgsnipes:unum:1.03")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.kgsnipes : unum sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.kgsnipes" % "unum" % "1.03"