Java Maven项目引入Maven Dependencies

来源:互联网 发布:求质数算法 编辑:程序博客网 时间:2024/04/29 08:31

maven项目中如果不小心把Maven Dependencies 给移除了可以通过如下方法添加。
这里写图片描述
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>

保存。
2.重启eclipse。ok(或者直接刷新工程,有时候不起作用)
这里贴出整个.classpath以供参考:

<?xml version="1.0" encoding="UTF-8"?><classpath>    <classpathentry including="**/*.java" kind="src" output="target/classes" path="src/main/java">        <attributes>            <attribute name="optional" value="true"/>            <attribute name="maven.pomderived" value="true"/>        </attributes>    </classpathentry>    <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">        <attributes>            <attribute name="maven.pomderived" value="true"/>        </attributes>    </classpathentry>    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">        <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>    <classpathentry kind="output" path="target/classes"/></classpath>
0 0
原创粉丝点击