我在maven项目的 Eclipse 中有以下结构:
MainMavenProject
---MyProject
---MProject-client
---MProject-xyz
---MProject-web
...
在Eclipse中,我使用 JBoss 7.1 来运行MProject-web:
现在,我想用另一个项目运行Jetty。从目录 / MainMavenProject / MyProject 我运行一个命令
mvn -Djetty:port=8081 jetty:run
已完成错误:
[ERROR] Failed to execute goal on project MyProject: Could not resolve dependencies for project ***.*****.MyProject:MyProject:war:0.0.1-SNAPSHOT: The following artifacts could not be resolved: ***.*****.********:MyProject-client:jar:1.0.
1-SNAPSHOT, com.*****.********:MProject-xyz:jar:1.0.1-SNAPSHOT: Failure to find ***.*****.********:MyProject-client:jar:1.0.1-SNAPSHOT in https://*********.*****.com/nexus/content/groups/development was cached in the local repository, resolutio
n will not be reattempted until the update interval of *****-central 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
在MyProject中,我使用依赖于其他的:
<dependency>
<groupId>com.*****.********</groupId>
<artifactId>MyProject-client/artifactId>
<version>1.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.*****.********</groupId>
<artifactId>MProject-xyz</artifactId>
<version>1.0.1-SNAPSHOT</version>
</dependency>
我如何检查,究竟发生了什么以及之后如何解决?
提前谢谢
答案 0 :(得分:7)
首先尝试在主项目上运行mvn install
。
您的项目缺少其他模块,这些模块可能从未安装到本地存储库。
并非每次都要在运行jetty:run
之前运行安装。
另一种方法是使用eclipse,右键单击MyProject - &gt;以 - &gt;运行Maven build ...,在目标字段中输入-Djetty:port=8081 jetty:run
并选中&#34; Resolve workspace artifacts&#34;。