码迷,mamicode.com
首页 > 其他好文 > 详细

Maven项目中找不到maven dependencies library

时间:2016-04-14 18:00:41      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

一般是,workspace中的.classpath文件中有内容丢失造成

<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
        <attributes>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
 </classpathentry>

下面添加:

<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
        <attributes>
            <attribute name="maven.pomderived" value="true"/>
            <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
        </attributes>
    </classpathentry>

重新启动eclipse 或者switch workspace到当前workspace即可解决。

Maven项目中找不到maven dependencies library

标签:

原文地址:http://www.cnblogs.com/antis/p/5391731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!