首页 > 解决方案 > 无法在 IntelliJ 中使用 Maven 加载 Eclipse 运行时 jar

问题描述

从 Maven 下载 Eclipse 运行时 jar 时遇到以下异常。

https://mvnrepository.com/artifact/org.eclipse.core/runtime/3.10.0-v20140318-2214

我的 Maven 条目是:

<dependency>
                <groupId>org.eclipse.core</groupId>
                <artifactId>runtime</artifactId>
                <version>3.10.0-v20140318-2214</version>
            </dependency>    

无法读取 org.eclipse.core:runtime:jar:3.10.0-v20140318-2214 的工件描述符 less... (Ctrl+F1) 检查 Maven 模型是否存在分辨率问题。

如何在 IntelliJ 中解决这个问题?

标签: mavenintellij-idea

解决方案


如果有人遇到同样的问题并试图解决它,请向那些人发布答案。我所要做的就是构建($mvn clean install)项目并在intellij中重新导入它。


推荐阅读