gpt4 book ai didi

Maven OpenSAML 依赖问题

转载 作者:行者123 更新时间:2023-12-04 20:48:06 26 4
gpt4 key购买 nike

我被分配了在我的公司和客户之间实现 SAML 的任务。我正在考虑使用 OpenSAML,但我正在努力设置 Maven 项目。

我添加依赖项:

<dependency>
<groupId>org.opensaml</groupId>
<artifactId>opensaml</artifactId>
<version>2.5.1</version>
</dependency>

但是pom文件有一个错误:Missing artifact xerces:xml-apis:jar:1.4.01

我在 Maven 存储库中找不到这个依赖项。检查 OpenSAML 站点时,它指出:

Using OpenSAML in Maven-based Projects

Following is the information necessary to use OpenSAML within Maven-based projects. Maven Repository: https://build.shibboleth.net/nexus/content/repositories/releases Group ID: org.opensaml Artifact ID: opensaml



但是当我在我的 pom 文件中配置该存储库时,它仍然找不到依赖项。
<repositories>
<repository>
<id>org.opensaml</id>
<url>https://build.shibboleth.net/nexus/content/repositories/releases</url>
</repository>
</repositories>

有没有人在 Maven 中设置了 OpenSAML 可以提供帮助?

最佳答案

您是否还从存储库将 xmltooling 和 openws 依赖项添加到您的 POM 文件中:

https://build.shibboleth.net/nexus/content/repositories/releases/org/opensaml/

<dependency>
<groupId>org.opensaml</groupId>
<artifactId>xmltooling</artifactId>
<version>1.3.2</version>
</dependency>

<dependency>
<groupId>org.opensaml</groupId>
<artifactId>openws</artifactId>
<version>1.4.2</version>
</dependency>

xmltooling 应该具有缺少的 xerces xml-api。

谢谢,
约格什

关于Maven OpenSAML 依赖问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13865390/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com