方式一、在 build 中增加配置
extdirs
:本地 jar 包路径,相对于项目目录<!-- 配置打包 jdk 版本,引入本地 jar 包 -->
<build>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<!-- 引入本地 jar 包时打包需要增加此配置 -->
<compilerArguments>
<extdirs>${project.basedir}/lib</extdirs>
</compilerArguments>
</configuration>
</plugin>
</build>
方式二、在依赖中直接引入
groupId
:随意artifactId
:随意version
:随意scope
:system
systemPath
:本地 jar 包路径<!-- 本地引入方式-->
<dependency>
<groupId>aes</groupId>
<artifactId>aes</artifactId>
<scope>system</scope>
<systemPath>${project.basedir}/lib/aes-jre1.6.jar</systemPath>
</dependency>