Error using checkstyle/google_checks.xml with maven-checkstyle-plugin

后端 未结 3 1707
终归单人心
终归单人心 2021-01-17 18:03

I am trying to use checkstyles google_checks.xml with maven-checkstyle-plugin. If I use the google_checks.xml with the latest checkstyle intelliJ plugin everything is correc

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-17 18:30

    fixed this by updating the checkstyle-dependency manually to the latest stable version:

            
                org.apache.maven.plugins
                maven-checkstyle-plugin
                2.13
                
                    
                        com.puppycrawl.tools
                        checkstyle
                        ${checkstyle.latest.version}
                    
                
                
                    ${checkstyle.file.path}
                    false
                
            
    

提交回复
热议问题