依赖打包成功
在这里插入图片描述
项目也引用了
在这里插入图片描述
但是启动项目报错
在这里插入图片描述
检查依赖,和 common 对比,发现 data 依赖打包有问题
在这里插入图片描述
查看 data 的 pom.xml 发现有直接使用本地 jar在这里插入图片描述
data 的 pom.xml 中配置maven将本地jar打入package中

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

参考:
https://blog.csdn.net/Candyz7/article/details/127220881
https://blog.csdn.net/dreaming317/article/details/106335656/

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐