Skip to content

Maven Repository

Endi S. Dewata edited this page Jul 10, 2024 · 3 revisions

Overview

The Maven repository for LDAP SDK is located at https://github.com/dogtagpki/repo/tree/maven.

Warning
This is still under construction.

Repository

To use the repository, add the following into pom.xml:

<repository>
    <id>dogtagpki</id>
    <url>https://raw.githubusercontent.com/dogtagpki/repo/maven</url>
    <snapshots>
        <enabled>true</enabled>
        <updatePolicy>always</updatePolicy>
    </snapshots>
</repository>

Modules

To use the modules, add the dependencies as needed:

<dependency>
    <groupId>org.dogtagpki.ldap-sdk</groupId>
    <artifactId>ldapjdk</artifactId>
    <version>5.6.0-SNAPSHOT</version>
</dependency>

<dependency>
    <groupId>org.dogtagpki.ldap-sdk</groupId>
    <artifactId>ldapbeans</artifactId>
    <version>5.6.0-SNAPSHOT</version>
</dependency>

<dependency>
    <groupId>org.dogtagpki.ldap-sdk</groupId>
    <artifactId>ldapfilter</artifactId>
    <version>5.6.0-SNAPSHOT</version>
</dependency>

<dependency>
    <groupId>org.dogtagpki.ldap-sdk</groupId>
    <artifactId>ldapsp</artifactId>
    <version>5.6.0-SNAPSHOT</version>
</dependency>

<dependency>
    <groupId>org.dogtagpki.ldap-sdk</groupId>
    <artifactId>ldaptools</artifactId>
    <version>5.6.0-SNAPSHOT</version>
</dependency>
Clone this wiki locally