我被分配了在我的公司和客户之间实施SAML的任务。我正在考虑使用OpenSAML,但我正在努力建立maven项目。
我添加了依赖项:
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>opensaml</artifactId>
<version>2.5.1</version>
</dependency>
但是 pom 文件有一个错误:缺少工件 xerces:xml-apis:jar:1.4.01
我在maven仓库中找不到这种依赖关系。当检查OpenSAML站点时,它声明:
在基于Maven的项目中使用OpenSAML
以下是在基于Maven的项目中使用OpenSAML所需的信息。Maven存储库:https://build.shibboleth.net/nexus/content/repositories/releases组ID:org.opensaml项目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>
xmltools应该具有缺失的xerces xml-api。
谢谢,约格什