maven 添加 checkstyle 插件约束代码规范

本例示例,是引用 http 链接这种在线 checkstyle.xml 文件的配置方式,如下示例:

xml 复制代码
    <properties>
        <maven.checkstyle.plugin.version>3.3.0</maven.checkstyle.plugin.version>
        <!--支持本地绝对路径、本地相对路径、HTTP远程路径-->
        <checkstyle.config.location>http://xxx.test.com/repository/raw-hosted/scripts/checkstyle/checkstyle.xml</checkstyle.config.location>
        <!--这样配置suppressions规则设定需要排除不检查的文件-->
        <checkstyle.suppressions.location/>
    </properties>
  
  <!--省略-->
  
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
                <version>${maven.checkstyle.plugin.version}</version>
                <configuration>
                    <consoleOutput>true</consoleOutput>
                    <violationSeverity>error</violationSeverity>
                    <detail>true</detail>
                </configuration>
                <executions>
                    <execution>
                        <id>checkstyle</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>check</goal>
                        </goals>
                        <configuration>
                            <failOnViolation>true</failOnViolation>
                            <failsOnError>false</failsOnError>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
相关推荐
计算机软件程序设计6 小时前
如何使用IDEA创建Maven/SSM工程?
java·maven·intellij-idea·ssm
任聪聪17 小时前
【JAVA基础】MAVEN的安装及idea的引用说明
java·maven·intellij-idea
计算机聚众网络18 小时前
008_SSH_Sqlserverl图书管理系统(学生注册 借书 还书)_lwplus87(免费送)
java·spring boot·spring·eclipse·maven·hibernate
p39397526919 小时前
maven推送jar到本地和远程仓库
java·maven·jar
闭关苦炼内功1 天前
Maven 中央仓库地址 mvnrepository.com
java·maven
FrozenMoments1 天前
编写可读代码的艺术
代码规范
莫为善2 天前
Maven从浅入深(理解篇)
java·maven
LUwantAC2 天前
Java学习路线:Maven(四)Maven常用命令
java·学习·maven
todoitbo2 天前
gitlab-runner中搭建nvm、nrm以及优化maven打包
java·gitlab·maven
尘浮生2 天前
Java项目实战II基于Spring Boot的药店管理系统的设计与实现(开发文档+数据库+源码)
java·开发语言·数据库·spring boot·后端·maven·intellij-idea