我正在尝试Maven安装并为我的项目创建jar。但我收到以下错误:
Plugin org.apache.maven.plugins:maven-surefire-plugin:2.19.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1: Could not transfer artifact org.apache.maven.plugins:maven-surefire-plugin:pom:2.19.1 from/to central (https://repo.maven.apache.org/maven2): repo.maven.apache.org: unknown error: Unknown host repo.maven.apache.org: unknown error -> [Help 1]
任何帮助表示赞赏。我找到了类似的线程,但没有一个工作。添加了如下所示的缺失插件,但仍然是同样的问题。任何帮助表示赞赏。
插件添加:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
</plugins>
先谢谢。
答案 0 :(得分:0)
正如khmarbaise和lexicore已经提到的,你需要为maven配置你的代理。请确认您在公司的网络中。如果是这样的话:
如果您使用公司的笔记本电脑,您的浏览器可能已配置为使用公司代理。这是一个很好的wikihow article,用于在不同的浏览器中查找代理设置。你想不要:
如果您的浏览器中没有通过常规方法配置代理,您应该与您的IT部门联系并询问他们代理服务器的详细信息。
完成代理服务器设置后。打开~/.m2/settings.xml
文件。如果它不存在则创建它。现在使用以下格式填写代理服务器的详细信息:
<settings>
<proxies>
<proxy>
<id>work-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>my.proxy.host.name</host>
<port>proxyport</port>
<username>proxyuser</username> <!-- Remove this option if there is no user name -->
<password>somepassword</password> <!-- Remove this option if there is no password -->
</proxy>
</proxies>
</settings>
官方maven文档为here。
注意:如果您将工作笔记本电脑带回家并且您没有将VPN连接到公司网络,则必须禁用此代理才能让maven在家中工作。