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