eclipse 导入maven工程 在libraries 没有maven Dependencies「建议收藏」

2022-09-04 12:46:57 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

导入maven工程的时候所有的依赖包下载不下来,最后而且在工程的buildPath====>java BuildPath====>libraries 中没有maven Dependencies,显示为 org.eclipse.ide.MAVEN2_CLASSPATH_CONTAINER

解决方法:

1..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>

加上 将工程clean后就发现在libraries 有maven Dependencies显示了。

2.

Build Path -》 Java Build Path -》Libraries -》Add Library -》Maven Managed Dependences -》点击Next -》点击‘Maven Project settings’ ,

在‘Active Maven Profiles (comma separated)’下面的输入框中输入“Maven Dependencies”确认即可。

此时会在Classpath 的Libraries的标签栏下面看到添加的‘Maven Dependencies’。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/138198.html原文链接:https://javaforall.cn

0 人点赞