1、创建lib目录,放入jar包
在src的某个目录下创建lib目录,将需要的本地jar包放入其中,如下图所示:
2、在pom.xml中添加代码
在pom.xml中添加如下代码即可
其中<groupId><artifactId><version>
可随便写
<systemPath>
需要改为自己的jar包的路径,如下图所示:
<dependency>
<groupId>Test</groupId>
<artifactId>Test</artifactId>
<version>Test</version>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/java/com/client/request/lib/commons-math3-3.6.1.jar</systemPath>
</dependency>
然后在<build><plugins><plugin>
下添加如下代码,如下图所示:
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
项目打包成jar包可以正常工作。
@Blog3