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