创建项目的时候报这个错误
来源:5-5 jdk、tomcat、maven配置及初始化web空白项目

Ppo
2025-04-07
[ERROR] Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5: Could not transfer artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.5 from/to central (http://repo.maven.apache.org/maven2): Failed to transfer file: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom. Return code is: 501 , ReasonPhrase:HTTPS Required. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[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 read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException
1回答
-
geelylucky
2025-04-09
同学你好,从你给出的错误信息可知,在创建项目时 Maven 尝试从
http://repo.maven.apache.org/maven2
下载maven-resources-plugin
的 POM 文件,不过该仓库如今仅支持 HTTPS 协议,使用 HTTP 协议访问就会返回 501 错误。00
相似问题