8

我已经使用 Maven 几个月来使用 Artifactory 构建项目的依赖项。我今天早上从我们的 VCS (GIT) 中检查了所有最新代码并进行编译,但 Maven 无法连接。我可以通过 telnet 和网络浏览器到达该位置。但我尝试没有任何帮助。

此外,我有 Maven 试图在我的本地 .m2 存储库中下载的 jar,但 Intellij(Maven 插件)中的项目告诉我它无法解决依赖关系。

任何建议、想法等将不胜感激。

Downloading: http://salgs2cm01:8081/artifactory/libs-release/com/isomorphic/smartgwt-power/3.0.p20120509/smartgwt-power-3.0.p20120509.pom
May 10, 2012 9:21:44 AM org.apache.maven.wagon.providers.http.httpclient.impl.client.DefaultRequestDirector tryConnect
INFO: I/O exception (java.net.SocketException) caught when connecting to the target host: Permission denied: connect
May 10, 2012 9:21:44 AM org.apache.maven.wagon.providers.http.httpclient.impl.client.DefaultRequestDirector tryConnect
INFO: Retrying connect
May 10, 2012 9:21:44 AM org.apache.maven.wagon.providers.http.httpclient.impl.client.DefaultRequestDirector tryConnect
INFO: I/O exception (java.net.SocketException) caught when connecting to the target host: Permission denied: connect
May 10, 2012 9:21:44 AM org.apache.maven.wagon.providers.http.httpclient.impl.client.DefaultRequestDirector tryConnect
4

1 回答 1

13

事实证明,就我而言,这是一个 IPV6 问题。在我的 Windows 7 环境中,我必须添加MAVEN_OPTS一个值为-Djava.net.preferIPv4Stack=true(您必须重新启动命令行)的环境变量。

我希望这有帮助!

于 2012-05-11T22:42:36.273 回答