Spring Cloud 生成jar(包含模块依赖)

使用Sping Cloud 生成jar的过程,一直提示找不到依赖关系,但是在idea中启动并没有问题。处理方法如下:

1/ parent 模块的pom文件中添加





org.springframework.boot
spring-boot-maven-plugin



repackage





2/common 模块(被依赖模块)的pom文件中添加



org.springframework.boot
spring-boot-maven-plugin



repackage


exec




3/业务模块(依赖其他模块) 的pom文件中添加



org.springframework.boot
spring-boot-maven-plugin





你可能感兴趣的:(Spring,Cloud)