0
点赞
收藏
分享

微信扫一扫

maven打包加入本地jar包案例

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
<fork>true</fork>
</configuration>
</plugin>

<dependency>
<groupId>com.sgcc</groupId>
<artifactId>nds</artifactId>
<version>1.6</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/sgcc_nariOld-1.6.jar</systemPath>
</dependency>

maven打包加入本地jar包案例_spring

 



举报

相关推荐

0 条评论