maven 打jar包缺失 resources 目录下的 jar 包
部署环境项目用到docker部署,发布的时候发现后台程序报错。很奇怪在本地能包的项目到服务器上就不能运行,查看报错日志后,发现是找不到自己导入的本地jar包依赖。万番搜索之下,找到只需要加个依赖便可。下面是我的错误提示和添加的依赖,等下次时间充裕我把我docker打包项目遇到的大坑也记录到博客中。正文开始警告 jar should not point at files within the pro
·
部署环境
项目用到docker部署,发布的时候发现后台程序报错。很奇怪在本地能包的项目到服务器上就不能运行,查看报错日志后,发现是找不到自己导入的本地jar包依赖。万番搜索之下,找到只需要加个依赖便可。
下面是我的错误提示和添加的依赖,等下次时间充裕我把我docker打包项目遇到的大坑也记录到博客中。
正文开始
警告 jar should not point at files within the project directory
[WARNING] 'dependencies.dependency.systemPath' for com.yinyuan:radarsdk:jar should not point at files within the project directory, ${project.basedir}/src/main/resources/jar/radar-sdk.jar will be unresolvable by dependent projects @ line 38, column 25
出错原因:maven 打包时没有将以 systemPath 这种形式引入的 jar 包,包含在内
解决办法:在 spring-boot-maven-plugin 插件中添加如下配置即可
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
更多推荐
已为社区贡献1条内容
所有评论(0)