最近在组里开发项目的时,经常遇到项目里面代码格式不统一,merge的时候经常冲突一大片,在网上搜索,查到了maven可以集成checkstyle进行代码格式化审查。现将我的经验做以分享。
参考网址:https://www.cnblogs.com/huang0925/p/3148389.html
配置CheckStyle插件
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.10</version>
<configuration>
<!-- 此处为自定义规范文件地址,confing目录与pom.xml平行 -->
<configLocation>config/google.xml</configLocation>
</configuration>
<executions>
<execution>
<id>checkstyle</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>