maven插件异常:Plugin execution not covered by lifecycle configuration

maven插件异常:Plugin execution not covered by lifecycle configuration


在导入maven工程的时候,经常遇到Plugin execution not covered by lifecycle configuration 异常。为了处理这种异常,在网上搜寻结果,发现并不能解决我的问题,所以这里描述下自己的解决方案。

问题描述

在导入java设计模式工程的时候,顶层pom文件提示Plugin execution not covered by lifecycle configuration异常(图中已经解决此异常,所以看不到。)。 maven插件异常:Plugin execution not covered by lifecycle configuration_第1张图片 执行了maven的各种操作,都无法去除此异常,所以上网查询了一下。

##网络解决方案

  1. 加management pluginManagement表示这里只是定义,而没有真正的使用。所以可以解决出错。但是如pluginmanagement的功能,我们无法再使用此插件。 maven插件异常:Plugin execution not covered by lifecycle configuration_第2张图片
  2. 修改eclipse配置 Window-Perferences-Maven-Lifecycle Mapping 中添加ignore,忽略此错误。
  3. quick fix 忽略此问题 maven插件异常:Plugin execution not covered by lifecycle configuration_第3张图片

问题的原因

此插件需要eclipse安装插件支持。 所以在eclipse中安装此插件就可以解决error了。 在eclipse的Markers中选择出错条目,右键后点击quick fix。按照引导安装插件即可。

maven-checkstyle-plugin

因此本次问题的原因是,项目中引用了maven-checkstyle-plugin。所以解决问题的验证也是通过此插件。 引用此插件的pom配置

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

            
                org.apache.maven.plugins
                maven-checkstyle-plugin
                2.17
                
                    ${basedir}/checkstyle-checker.xml
                
                
                    
                        validate
                        
                            check
                        
                        validate
                        
                            checkstyle.xml
                            checkstyle-suppressions.xml
                            UTF-8
                            true
                            true
                            true
                        
                    
                
            
        
    
     
     
         
             org.apache.maven.plugins
             maven-checkstyle-plugin
             2.17
         
     
 

${basedir}是工程目录,maven内部默认参数。 工程目录结构 maven插件异常:Plugin execution not covered by lifecycle configuration_第4张图片

在工程上运行check: maven插件异常:Plugin execution not covered by lifecycle configuration_第5张图片

target目录下会生成检测报告: maven插件异常:Plugin execution not covered by lifecycle configuration_第6张图片

我们可以在配置文件中更改检测标准,例如我忽略了文件尾空行的规则 maven插件异常:Plugin execution not covered by lifecycle configuration_第7张图片

转载于:https://my.oschina.net/u/347227/blog/1545915

你可能感兴趣的:(maven插件异常:Plugin execution not covered by lifecycle configuration)