故事:My Java是基于Gradle的项目。使用pac4j依赖
这是我的gradle配置:

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。 See here

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

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

关于java - 找不到net.shibboleth.tool:xmlsectool:2.0.0,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60635031/

10-10 02:49