gpt4 book ai didi

java - 无法使用Archetype在Eclipse Neon中创建Maven项目

转载 作者:太空宇宙 更新时间:2023-11-04 11:43:25 24 4
gpt4 key购买 nike

无法使用 Archetype 在 Eclipse Neon 中创建 Maven 项目,并且出现以下错误。 (附截图)

Could not transfer artifact org.apache.maven.archetypes:maven-archetype-quickstart:pom:1.1 from/to central (https://repo.maven.apache.org/maven2): repo.maven.apache.org

已为 Maven 正确配置代理设置。我还可以使用命令行创建 Maven 项目,没有任何问题。

我几乎尝试了互联网上推荐的所有解决方案。但没有运气。现在这个问题正在折磨我。

enter image description here

非常感谢您在这方面的帮助。

最佳答案

您似乎面临配置问题。转到settings.xml。

    <?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">

<proxies>
<proxy>
<id>proxyname</id>
<active>true</active>
<protocol>http</protocol>
<username>username</username>
<password>password</password>
<host>127.0.0.1</host>
<port>80</port>
<nonProxyHosts>any.host</nonProxyHosts>
</proxy>
</proxies>
</settings>

确保您指向默认代理并提供正确的凭据。

settings.xml 的位置引用:/repositories/buildtools/apache-maven-3.2.2-developer/conf/settings.xml

如果需要进一步了解,请回复我。

关于java - 无法使用Archetype在Eclipse Neon中创建Maven项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42571949/

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