maven项目有时候找不到第三方jar包的依赖坐标,这时就需要在项目下建立一个文件夹,将第三方jar包放在此处,在maven打包时将文件夹下的jar包打包进去
在pom.xml中添加如下插件,并指明jar包路径
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<compilerArguments>
<extdirs>${project.basedir}/lib</extdirs>
</compilerArguments>
</configuration>
</plugin>
注意:一定要指明具体路径 ${project.basedir},否则会找不到路径
原文地址:https://www.cnblogs.com/lmj612/p/10811975.html
时间: 2024-10-11 11:13:10