sonar使用指南

步骤

  • 将如下内容添加至maven路径下的settings.xml中

    
        org.sonarsource.scanner.maven
    
    
        
            sonar
            
                true
            
            
                
                
                  http://myserver:9000
                
            
        
     
  • 在需要分析项目的pom.xml文件所在目录,执行命令mvn sonar:sonar
  • http://localhost:9000/projects 查看代码分析结果

你可能感兴趣的:(sonar)