maven缺失神器

问题描述 投票:0回答:4

我有一个 Maven 项目,直到昨天才正常构建。现在,每当我尝试使用 m2e 构建时,它都会失败,因为它无法解析依赖项,但这些依赖项并没有丢失,并且可以在我的本地存储库中找到。我知道这个问题以前曾被问过,但没有一个答案解决了我的问题。我尝试了很多事情:

  • 删除缓存。
  • 关闭项目并重新打开它。
  • 对项目进行全新安装。

还是没有结果。那么有没有更系统的流程来解决这个问题呢?

编辑日志:

[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building itunit-workflow 1.0.2-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for org.activiti:activiti-bpmn-converter:jar:5.13 is missing, no dependency information available
[WARNING] The POM for org.springframework:spring-beans:jar:3.1.2.RELEASE is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7.279s
[INFO] Finished at: Mon Dec 16 18:30:10 GMT+02:00 2013
[INFO] Final Memory: 5M/76M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project itunit-workflow: Could not resolve dependencies for project org.itunit.itunit:itunit-workflow:ejb:1.0.2-SNAPSHOT: The following artifacts could not be resolved: org.activiti:activiti-bpmn-converter:jar:5.13, org.springframework:spring-beans:jar:3.1.2.RELEASE: Cannot access central (http://repo.maven.apache.org/maven2) in offline mode and the artifact org.activiti:activiti-bpmn-converter:jar:5.13 has not been downloaded from it before. -> [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
java maven m2eclipse
4个回答
20
投票

当从一种 Maven 配置更改为另一种配置时,通常会发生这种情况。就我而言,我从直接连接到 Maven Central 切换到使用 Nexus 作为镜像。

删除本地

maven-metadata*.xml
文件夹中的
_*.repositories
\Users\YourUser\.m2
对我来说很有效。

希望这有帮助!


15
投票

在 IntelliJ 中: - 转到文件 -设置 - 在搜索框左上角输入“maven”。 -单击maven选项 - 查看脱机工作框是否已选中。如果是,则取消选中它

在 Eclipse 中: - 单击绿色运行图标上的小下拉箭头。 -单击“运行配置”并选择您的 Maven 构建配置 - 查看“离线”框是否被选中。如果是,则取消选中它

如果你这样做了,但仍然遇到同样的问题,那么我会使用@Faliorn解决方案


2
投票

我在尝试使用 Intellij IDEA Maven 插件进行安装时遇到了这个问题。但是当我使用本地 Maven 安装进行安装时,问题就消失了。 如果您遇到同样的问题,请尝试安装新的 Maven 并运行

mvn install


0
投票
cd ~/.m2 && find . -name "_*.repositories" | xargs rm -rf 

对我有用。

© www.soinside.com 2019 - 2024. All rights reserved.