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