m2e lifecycle-mapping not found

前端 未结 11 742
时光说笑
时光说笑 2020-11-29 00:24

I am trying to use the solution described here to solve the annoying \"Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:build-helper-maven-plugin:1

11条回答
  •  [愿得一人]
    2020-11-29 00:58

    It happens due to a missing plugin configuration (as per vaadin's demo pom.xml comment):

    This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.

    
        
            
            
                org.eclipse.m2e
                lifecycle-mapping
                1.0.0
                
                    
                        
                            
                                
                                    com.vaadin
                                    
                                        vaadin-maven-plugin
                                    
                                    
                                        [7.1.5,)
                                    
                                    
                                        resources
                                        update-widgetset
                                        compile
                                        update-theme
                                        compile-theme
                                    
                                
                                
                                    
                                
                            
                        
                    
                
            
        
    
    

提交回复
热议问题