MVN

directory : apacheds

Maven & Gradle

Nov 06, 2006

Apache Directory Project · The Apache Directory Server (ApacheDS) is an embeddable LDAPv3 directory server with other protocol plugins such as kerberos. It is designed to be completely pluggable in every aspect including backends and frontend handlers making making it an ideal experimentation platform for LDAP protocol testing, and for use in building other tools like like meta directories, and virtual directories. ApacheDS aims to introduces stored procedures, triggers, views, and queues to the world of LDAP.

<dependency>
    <groupId>directory</groupId>
    <artifactId>apacheds</artifactId>
    <version>0.9</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of directory : apacheds to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.9

All Versions

Choose a version of directory : apacheds to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.9
apacheds-0.9
0.9.x
apacheds-0.9.2

How to add a dependency to Maven

Add the following directory : apacheds maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>directory</groupId>
    <artifactId>apacheds</artifactId>
    <version>0.9</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following directory : apacheds gradle dependency to your build.gradle file:

implementation 'directory:apacheds:0.9'

Gradle Kotlin DSL: Add the following directory : apacheds gradle kotlin dependency to your build.gradle.kts file:

implementation("directory:apacheds:0.9")

How to add a dependency to SBT Scala

SBT Scala: Add the following directory : apacheds sbt scala dependency to your build.sbt file:

libraryDependencies += "directory" % "apacheds" % "0.9"