Disable maven checkstyle

后端 未结 4 1569
一向
一向 2021-01-30 19:41

I want to execute a maven target but checkstyle errors forbids that. I have no time right now to correct checkstyle error (my checkstyle rules have been recently updated and I c

4条回答
  •  一向
    一向 (楼主)
    2021-01-30 20:04

    RandomCoders answer is the preferred one.

    If you want to disable checkstyle from your pom, you can add the checkstyle plugin to the pom and set the skip flag to prevent the check.

    
        org.apache.maven.plugins
        maven-checkstyle-plugin
        
            true
        
    
    

提交回复
热议问题