maven打包加入本地jar包案例

阅读 98

2023-01-27

<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)

0 0 举报