使用Assembly 插件打包Assembly is incorrectly configured: null Assembly: null is not configured correctly:

使用springboot 重构项目中的时候,对maven使用Assembly 进行项目模块的打包配置,但是老项目没有问题,新项目突然报错
错误信息如下:

Assembly is incorrectly configured: null 
Assembly: null is not configured correctly: Assembly ID must be 
present and non-empty.
 

通过各种的排查,我发现是因为版本的问题,在重构的项目中,使用的是2.6版本,老的版本是2.2-beta-5是一个测试版本,按道理我并没有改什么配置,但是Assembly 变成了2.6 ,解决如下:即制定版本。

    
            maven-assembly-plugin
            
                src/main/assembly/assembly.xml
            
            
                
                    make-assembly
                    package
                    
                        single
                    
                
            
            修改为制定版本<-->
            2.2-beta-5
        

你可能感兴趣的:(使用Assembly 插件打包Assembly is incorrectly configured: null Assembly: null is not configured correctly:)