关于maven打包的时候如何引入本地jar包
setup1:
<dependency>
<groupId>top.legend</groupId>
<artifactId> demo </artifactId>
<version> 1.0.0 </version>
<scope>system</scope>
<systemPath>${basedir}/lib/xxx.jar</systemPath>
</dependency>
setup2:
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>