开发者

Where can I find spring-ldap 1.3.1-RELEASE maven repo

开发者 https://www.devze.com 2023-02-28 20:38 出处:网络
1.2.1 is available, i can get it by <dependency> <groupId>org.springframework.ldap</groupId>

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.s开发者_开发问答pringframework.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

0

精彩评论

暂无评论...
验证码 换一张
取 消