Question

1.2.1 is available, i can get it by

<dependency>
    <groupId>org.springframework.ldap</groupId>
    <artifactId>spring-ldap</artifactId>
    <version>1.2.1</version> 
</dependency>

but I can't get the latest build. I have used

<dependency>
    <groupId>org.springframework.ldap</groupId>
    <artifactId>spring-ldap</artifactId>
    <version>1.3.1.RELEASE</version>
</dependency>

I am interested in using the authenticate method of LdapTemplate.

Was it helpful?

Solution

It looks like now they want you to declare dependencies on individual modules.

However, the single module is still there, but you need to use classifier to access it:

<dependency>
    <groupId>org.springframework.ldap</groupId>
    <artifactId>spring-ldap</artifactId>
    <version>1.3.1.RELEASE</version>
    <classifier>all</classifier>
</dependency>

OTHER TIPS

It is available in the below link

You can download it here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top