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