We have CAS5 running on a test system with LDAP configured using unboundID, and it is working.
Where in the CAS5 doc is the org.ldaptive maven pom documented, and what dependency version should be used to match say the CAS 5.0.4 version? Currently I am using: <ldaptive.version>1.2.1</ldaptive.version>
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-support-ldap-core</artifactId>
<version>${cas.version}</version>
</dependency>
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-support-ldap</artifactId>
<version>${cas.version}</version>
</dependency>
<dependency>
<groupId>org.ldaptive</groupId>
<artifactId>ldaptive</artifactId>
<version>${ldaptive.version}</version>
</dependency>
<dependency>
<groupId>org.ldaptive</groupId>
<artifactId>ldaptive-unboundid</artifactId>
<version>${ldaptive.version}</version>
</dependency>
<properties>
<cas.version>5.0.4</cas.version>
<ldaptive.version>1.2.1</ldaptive.version>
<springboot.version>1.4.2.RELEASE</springboot.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>