MVN

software.nealk : concurrent

Maven & Gradle

Feb 10, 2020
0 stars

NealK Concurrency Library · An easy-to-consume concurrency library allowing for "Tasks" to execute business logic in a thread safe manner. This library helps users achieve multi-threading in their applications without worrying about synchronization and blocking for race conditions.

<dependency>
    <groupId>software.nealk</groupId>
    <artifactId>concurrent</artifactId>
    <version>0.5.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of software.nealk : concurrent to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.5.0

All Versions

Choose a version of software.nealk : concurrent to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.5.x
concurrent-0.5.0
0.4.x
concurrent-0.4.1
0.2.x
concurrent-0.2.7

How to add a dependency to Maven

Add the following software.nealk : concurrent maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>software.nealk</groupId>
    <artifactId>concurrent</artifactId>
    <version>0.5.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following software.nealk : concurrent gradle dependency to your build.gradle file:

implementation 'software.nealk:concurrent:0.5.0'

Gradle Kotlin DSL: Add the following software.nealk : concurrent gradle kotlin dependency to your build.gradle.kts file:

implementation("software.nealk:concurrent:0.5.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following software.nealk : concurrent sbt scala dependency to your build.sbt file:

libraryDependencies += "software.nealk" % "concurrent" % "0.5.0"

Advertisement