maven项目引入jar包
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven项目引入jar包相关的知识,希望对你有一定的参考价值。
在maven项目中,如果不小心把build path中maven依赖包干掉了,不知道怎么添加回来,可以找到.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>
以上是关于maven项目引入jar包的主要内容,如果未能解决你的问题,请参考以下文章