gpt4 book ai didi

java - 为什么 Maven 找不到这个 jar

转载 作者:行者123 更新时间:2023-11-29 03:24:14 24 4
gpt4 key购买 nike

我有我的项目需要的以下 JAR,所以我将它添加到我的 pom.xml 中...

<dependency>
<groupId>org.reficio</groupId>
<artifactId>soap-builder</artifactId>
<version>1.0.0-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.apache.ws.commons.schema</groupId>
<artifactId>XmlSchema</artifactId>
</exclusion>
</exclusions>
</dependency>

但是当我运行 Maven 时,它会尝试从各种存储库下载,但最终失败了。它只创建一个“lastUpdated”文件,其内容如下..

http\://repository.jboss.org/nexus/content/groups/public-jboss/.lastUpdated=1392941827625
http\://www.terracotta.org/download/reflector/releases/.lastUpdated=1392941828195

有人有什么建议吗?这个 JAR 根本不存在了吗?

谢谢。

最佳答案

该 Artifact 不在 Maven Central(或其他默认存储库)中,因此 Maven 不会自动找到它。 reficio/soap-ws page on Github解释:

soap-ws is not yet located in the central maven repo, thus you also have to add an additional repository to your config.

<repositories>
<repository>
<id>reficio</id>
<url>http://repo.reficio.org/maven/</url>
</repository>
</repositories>

关于java - 为什么 Maven 找不到这个 jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21922632/

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