2014-07-15 135 views
0

当我尝试做一个MVN部署我收到此错误:maven无法解决项目依赖关系?

[ERROR] Failed to execute goal on project cross-automation-config: Could not resolve dependencies for project com.desp.cross.commons:cross-automation-config:jar:0.0.1-SNAPSHOT: Failed to collect dependencies for [com.desp.qc:automation-commons-config:jar:0.0.7 (compile), com.desp.cross.commons:cross-automation-utils:jar:0.0.1-SNAPSHOT (compile)]: Failed to read artifact descriptor for com.desp.cross.commons:cross-automation-utils:jar:0.0.1-SNAPSHOT: Failure to find com.desp.cross.commons:cross-automation-commons:pom:0.0.1-SNAPSHOT in http://repo.jenkins-ci.org/public/ was cached in the local repository, resolution will not be reattempted until the update interval of repo.jenkins-ci.org has elapsed or updates are forced -> [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/DependencyResolutionException 

到项目(跨自动化配置),我有这些相关

<dependency> 
    <groupId>com.desp.qc</groupId> 
    <artifactId>automation-commons-config</artifactId> 
</dependency> 
<dependency> 
    <groupId>com.desp.cross.commons</groupId> 
    <artifactId>cross-automation-utils</artifactId> 
</dependency> 

这个项目有一个父项目,我不考虑必须放在这里。

我知道这是一个依赖性问题。我不明白的是,为什么eclipse可以下载这些依赖关系,没有任何错误,并且maven不能运行。

你对发生了什么有了解吗?

+0

我已经检查了settings.xml,这不是存储库中的问题 – jscherman

回答

0

看起来您的maven无法在您的本地存储库中找到此依赖关系。 您应该尝试首先构建这两个项目:automation-commons-configcross-automation-utils(如果彼此存在依赖关系,请小心)。