需求描述
由于公司 SDK 没有正式上线,只能提供 jar,需要手动添加依赖,在使用 maven 打包的时候提示找不到符号。
解决方案
将外部 jar 使用 maven 管理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <dependency> <groupId>任意值</groupId> <artifactId>任意值</artifactId> <version>任意值</version> <scope>system</scope> <systemPath>项目中的相对路径</systemPath> </dependency>
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <includeSystemScope>true</includeSystemScope> </configuration> </plugin>
|