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