maven添加lib里面的资源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven添加lib里面的资源相关的知识,希望对你有一定的参考价值。
有一些冷门的jar包,自己又比较懒,不想上传上nexus,就直接放web项目中的/WEB-INF/lib目录了,构建的时候,在编译期出错,因为无法依赖那些jar包,此时用maven的compile插件指定该目录为额外的库目录即可。
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
<compilerArguments>
<extdirs>srcmainwebappWEB-INFlib</extdirs>
</compilerArguments>
</configuration>
</plugin>
作者:IamLsz
来源:CSDN
原文:https://blog.csdn.net/imlsz/article/details/49864013
版权声明:本文为博主原创文章,转载请附上博文链接!
以上是关于maven添加lib里面的资源的主要内容,如果未能解决你的问题,请参考以下文章
如何从 lib 文件夹中添加 Maven 依赖 jar 文件
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段