Maven构建失败的依赖项

时间:2013-09-03 10:56:49

标签: java eclipse maven build

我有一个本地artefact存储库,我的maven设置指向但由于某种原因,它似乎没有击中它,并且在尝试安装时始终失败。 我可以直接在浏览器中访问该URL,也可以通过浏览器访问maven repo。 我也可以ping两个。

为什么它一直失败的任何想法? 堆栈跟踪

干杯,

mvn clean install -DskipTests -T 8C
[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2.pom
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]   
[ERROR]   The project uk.co.three:Three:0.1 (/Users/***/Projects/three/Development/pom.xml) has 1 error
[ERROR]     Unresolveable build extension: Plugin org.apache.maven.wagon:wagon-webdav:1.0-beta-2 or one of its dependencies could not be resolved: Failed to collect dependencies for org.apache.maven.wagon:wagon-webdav:jar:1.0-beta-2 (): Failed to read artifact descriptor for org.apache.maven.wagon:wagon-webdav:jar:1.0-beta-2: Could not transfer artifact org.apache.maven.wagon:wagon-webdav:pom:1.0-beta-2 from/to central (http://repo1.maven.org/maven2): Error transferring file: Connection refused -> [Help 2]
[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/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException

5 个答案:

答案 0 :(得分:9)

我不知道你是否使用了嵌入式或外部maven安装(Window-> Preferences - > Maven - > Installations)。

如果是外部的,您必须在settings.xml(在外部安装的conf文件夹中或本地存储库中)声明您的公司代理。

如果您使用嵌入式maven,也可能是这种情况。然后,您必须在“嵌入式​​安装的全局设置”中提供设置文件。

如果您正在使用外部maven安装,您还可以在eclipse之外尝试命令行。

使用

mvn -U ...

您可以强制maven查找最新的插件版本。

答案 1 :(得分:1)

如果您在代理后面,可以使用

mvn clean install -DproxySet=true -DproxyHost=<your proxy host> -DproxyPort=<port>

答案 2 :(得分:1)

如果您使用的是代理,并且已经解压缩了Maven目录,那么 更新 {APACHE_MAVEN_DIR} \ conf 中的settings.xml,如下所示,

只需使用正确的信息更新&#34; REPLACE ~~&#34; 字符串,然后重试。

<proxies>
 <proxy>
    <id>example-proxy</id>
    <active>true</active>
    <protocol>http</protocol>
    <host>proxy.example.com</host>
    <port>8080</port>
    <username>proxyuser</username>
    <password>somepassword</password>
    <nonProxyHosts>www.google.com|*.example.com</nonProxyHosts>
  </proxy>
</proxies>

以下是maven settings.xml中代理配置的官方文档:

https://maven.apache.org/guides/mini/guide-proxies.html

答案 3 :(得分:0)

尝试在

中设置eclipse的代理配置

Settings -> General -> Network Connection

再试一次,这似乎是一个可见性问题。

答案 4 :(得分:0)

您也可以尝试使用项目运行以下命令,

$ git config --global url."https://".insteadOf git://