gpt4 book ai didi

java - Maven 无法访问(现有)pom 文件

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

我正在尝试使用 maven 编译 java 项目。我已经在Eclipse(m2eclipse连接器)中右键单击pom文件 > Maven > Maven Install进行了尝试

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.5:resources (default-resources) ... 
Could not transfer artifact org.apache.maven.shared:maven-filtering:pom:1.0 from/to maven-central (http://repo.maven.apache.org/maven2/)

然后我在命令提示符下使用mvn cleancompile尝试了它,但我得到了这个屏幕截图:

enter image description here

在我看来,maven 无法访问 maven-filtering-1.0 文件,即使我可以使用相同的 URL 在浏览器中访问 pom 文件。我是 maven 新手,不知道如何解决这个问题。非常感谢任何帮助!

最佳答案

如果您使用代理,您可以向 ~/.m2/setting.xml 添加简介

<settings>
....
<proxies>
<proxy>
<id>Proxy name</id>
<active>true</active>
<protocol>http</protocol>
<host>your.proxy.hostname.or.IP</host>
<port>8080</port>
<!-- omit these auth params if not needed: -->
<username>domain\\username</username>
<password>123456</password>
<nonProxyHosts>localhost|127.0.0.1|...</nonProxyHosts>
</proxy>
</proxies>

如果没有,请尝试从命令行使用 telnetwget POM:

wget http://repo.maven.apache.org/..../maven-filtering-1.0.pom

并尝试从那里确定出了什么问题。

干杯,

关于java - Maven 无法访问(现有)pom 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13415756/

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