How to add a dependency to Maven
Add the following be.dabla : parallel-iterable maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>be.dabla</groupId>
<artifactId>parallel-iterable</artifactId>
<version>1.6</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following be.dabla : parallel-iterable gradle dependency to your build.gradle
file:
implementation 'be.dabla:parallel-iterable:1.6'
Gradle Kotlin DSL: Add the following be.dabla : parallel-iterable gradle kotlin dependency to your build.gradle.kts
file:
implementation("be.dabla:parallel-iterable:1.6")
How to add a dependency to SBT Scala
SBT Scala: Add the following be.dabla : parallel-iterable sbt scala dependency to your build.sbt
file:
libraryDependencies += "be.dabla" % "parallel-iterable" % "1.6"