gpt4 book ai didi

java - 在http :xalan:jar:2. eviware.com/repository/maven2/中找不到org.apache.xalan ://www. 7.1

转载 作者:行者123 更新时间:2023-11-30 04:10:15 26 4
gpt4 key购买 nike

我正在运行一个从 https://svn.wso2.org/repos/wso2/people/suresh/saml2/sso-demo/src-dist 下载的 Maven 项目问题是,它可以在另一台计算机上运行,​​但我的:(。我不知道为什么。当我在命令行中输入“mvn clean install”时,结果如下:

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] Travelocity.com SAML2 SP Maven Webapp
[INFO] Avis.Com SAML2 SP Maven Webapp
[INFO] SAML2.SSO.Demo Maven Project
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Travelocity.com SAML2 SP Maven Webapp 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for org.apache.xalan:xalan:jar:2.7.1 is missing, no dependency
information available
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Travelocity.com SAML2 SP Maven Webapp ............. FAILURE [0.388s]
[INFO] Avis.Com SAML2 SP Maven Webapp .................... SKIPPED
[INFO] SAML2.SSO.Demo Maven Project ...................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.579s
[INFO] Finished at: Mon Nov 04 18:10:45 ICT 2013
[INFO] Final Memory: 3M/15M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project saml2.sso.demo.travelocity.com: Could
not resolve dependencies for project org.wso2.identity:saml2.sso.demo.travelocit
y.com:war:1.0.0-SNAPSHOT: Failure to find org.apache.xalan:xalan:jar:2.7.1 in ht
tp://www.eviware.com/repository/maven2/ was cached in the local repository, reso
lution will not be reattempted until the update interval of xerces-api has elaps
ed or updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyReso
lutionException

似乎无法从a link下载xalan.jar 。但我看到maven已经自动下载了xalan-2.7.1.jar。我不知道如何修复这个错误。请尽快帮助我。我非常感激。

最佳答案

您的项目正在搜索的存储库不包含该 Artifact :

org.apache.xalan:xalan:jar:2.7.1

它只包含xalan:xalan:jar:2.7.1 .

如果你运行mvn -X compile你会看到它们是以下项的依赖项:

[DEBUG]    org.opensaml:opensaml:jar:2.2.3:compile
[DEBUG] commons-collections:commons-collections:jar:3.1:compile
[DEBUG] commons-lang:commons-lang:jar:2.1:compile
[DEBUG] velocity:velocity:jar:1.5:compile
[DEBUG] org.apache.xerces:xml-apis:jar:2.9.1:runtime
[DEBUG] org.apache.xerces:xercesImpl:jar:2.9.1:runtime
[DEBUG] org.apache.xerces:resolver:jar:2.9.1:runtime
[DEBUG] org.apache.xerces:serializer:jar:2.9.1:runtime
[DEBUG] org.apache.xalan:xalan:jar:2.7.1:runtime

如果相信编写此代码的人有意排除他们:

<exclusion>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>

但请注意 <groupId>实际上排除了它并不是真正的依赖项的依赖项。您需要通过以下方式更改 pom 中的上述排除项:

<exclusion>
<groupId>org.apache.xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.xerces</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>

对其他潜在冲突的 Artifact 遵循相同的模式。

关于java - 在http :xalan:jar:2. eviware.com/repository/maven2/中找不到org.apache.xalan ://www. 7.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19782436/

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