문제

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.

도움이 되었습니까?

해결책

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>

다른 팁

It is available in the below link

You can download it here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top