Не удалось найти net .shibboleth.tool: xmlsectool: 2.0.0 - PullRequest
3 голосов
/ 11 марта 2020

Story: 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

, пожалуйста, помогите мне, дайте мне знать, где я ошибаюсь.

На самом деле я не могу понять ошибку.

1 Ответ

2 голосов
/ 26 марта 2020

Shibboleth не публикует sh в Maven Central. См. Здесь

Чтобы получить зависимость, вам нужно добавить ее в свои средства распознавания в файле Gradle:

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