maven项目中找不到Maven Dependencies解决办法

打开.classpath文件,添加如下内容:

<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>
原文地址:https://www.cnblogs.com/mycifeng/p/7260952.html