在maven项目中使用findbugs

1.在pom.xml中添加插件依赖

  
                org.codehaus.mojo  
                findbugs-maven-plugin  
                2.5.2  
                  
                    true  
                    Max
                    target/site
                  
              
			

 2.执行clean命令清理项目

 

3.执行package命令打包

 

4.执行 findbugs:findbugs 


在maven项目中使用findbugs_第1张图片
 

 

5.执行 findbugs:gui 查看bug

 

你可能感兴趣的:(java)