Could not find net.shibboleth.tool:xmlsectool:2.0.0



故事:我的Java是基于Gradle的项目。使用pac4j依赖关系这是我的渐变配置:

compile ('org.pac4j:pac4j-saml:3.0.0-RC1'){
exclude group: 'com.google.guava', module: 'guava'
exclude group: 'org.apache.santuario', module: 'xmlsec'
exclude group: 'org.springframework', module: 'spring-core'
}
compile ('org.pac4j:pac4j-oauth:3.0.0-RC1')
compile ('org.pac4j:j2e-pac4j:4.0.0-RC1')

但由于安全漏洞,我想更新pac4j依赖项,所以我将pac4j更新到了4.0.0-RC3的最新版本

但现在,当我清理构建时,我的项目显示以下错误。

* What went wrong:
Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find net.shibboleth.tool:xmlsectool:2.0.0.
Searched in the following locations:
- https://repo.maven.apache.org/maven2/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom
- https://repo.maven.apache.org/maven2/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar
- https://pkgs.dev.azure.com/~/maven/v1/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom
- https://pkgs.dev.azure.com/~/maven/v1/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar
Required by:
project : > org.pac4j:pac4j-saml:4.0.0-RC1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org

请帮帮我,让我知道我错在哪里。

事实上,我不能理解这个错误。

Shibboleth不向maven central发布。参见此处

要获得依赖项,您需要将其添加到gradle文件中的解析器中:

maven { url "https://build.shibboleth.net/nexus/content/groups/public" }

相关内容

  • 没有找到相关文章

最新更新