checkStype和findBugs校验

Posted 煮海焚天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checkStype和findBugs校验相关的知识,希望对你有一定的参考价值。

IDEA可以直接在setting中下载checkStyle和findBugs

技术分享



<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.4</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<includeFilterFile>config/findbugs-rules.xml</includeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<consoleOutput>true</consoleOutput>
<configLocation>config/checkstyle-rules.xml</configLocation>
<suppressionsLocation>config/checkstyle-suppressions.xml</suppressionsLocation>
<failsOnError>true</failsOnError>
<includeTestSourceDirectory>false</includeTestSourceDirectory>
</configuration>
</plugin>

以上是关于checkStype和findBugs校验的主要内容,如果未能解决你的问题,请参考以下文章

find bugs-求最大公约数和最小公倍数

如何删除 Findbugs 的“污点”“查找安全漏洞”

PMD 和 FindBugs 有啥区别?

Maven Findbugs 插件 - 如何在测试类上运行 findbug

eclipse里的findbugs单击没反应

.NET 的 FindBugs [关闭]