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