springboot 使用maven打包报错 Failed to execute goal on project

1 Failed to execute goal on project xxx: Could not resolve dependencies for project xxx:xxxr:xxx: Could not find artifact xxx

这是由于工程中有很多模块 之间有依赖关系 打包子项目时找不到父项目的依赖

所以先打包父项目(maven install),出现以下错误:
Unable to find main class

由于不需要main函数 所以做如下操作

父项目打包成功->子项目打包成功

你可能感兴趣的:(spring,boot,maven,后端)