问题描述:从svn剪出来的maven项目,没有 Maven Dependencies Library,如下图描述:
解决思路:
很有可能是哪位帅哥哥不小心上传了.classpath或者.project导致的这个问题
解决方案:
.classpath中加(没有则需要加入,有忽略):
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
.project中加入
(没有则需要加入,有忽略):
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
加上以后,重启eclipse,然后右键pom.xml--->maven ---》update Dependencies即可。