引入外部jar
<dependency>
<groupId>com.zichu</groupId>
<artifactId>icbc-cop</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/2024/icbc-api-sdk-cop.jar</systemPath>
<version>1.0</version>
</dependency>
打包外部jar进入部署jar
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>