eclipse找不到maven依赖项中可用的jar

时间:2013-08-16 16:24:35

标签: eclipse maven dependencies

我有一个带有以下条目的pom.xml

<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>3.1.0.RELEASE</version>
        </dependency>

在maven安装中,jar被添加到maven存储库中,并且也列在maven依赖库中。

但是我无法从添加的jar“spring-web-3.1.0.RELEASE.jar”中为特定条目导入任何类,尽管它在类路径中显示

错误 - 在eclipse中“无法解析为类型”

environment - maven 3.1和Spring工具套件

由于

1 个答案:

答案 0 :(得分:1)

解决 - 通过其他论坛找到解决方案

存储库中的jar已损坏。

清除物理驱动器中的.m2文件夹并重复maven clean install后。

感谢@techidiot @jtravaglini。