在哪里可以找到 spring-ldap 1.3.1-RELEASE maven 存储库

发布于 2024-11-04 05:51:35 字数 539 浏览 0 评论 0原文

1.2.1 可用,我可以获取它

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

,但无法获取最新版本。我已经使用了

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

我感兴趣的LdapTemplate 的authenticate 方法。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

滥情稳全场 2024-11-11 05:51:35

看起来现在他们希望您声明对各个模块的依赖关系

但是,单个模块仍然存在,但需要使用分类器来访问它:

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

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>
七月上 2024-11-11 05:51:35

它可以在以下链接中找到

您可以在这里下载

It is available in the below link

You can download it here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文