sonarQube使用maven进行检查

Posted djrLog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sonarQube使用maven进行检查相关的知识,希望对你有一定的参考价值。

1.在maven的中找到setting配置文件。在setting.xml中增加sonarqube配置。如下:

    <profiles>
        <profile>
            <id>sonar</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                <sonar.jdbc.url>jdbc:mysql://192.168.1.97:3306/sonar?useUnicode=true&amp;characterEncoding=utf8</sonar.jdbc.url>
                <sonar.jdbc.driver>com.mysql.jdbc.Driver</sonar.jdbc.driver>
                <sonar.jdbc.username>root</sonar.jdbc.username>
                <sonar.jdbc.password>root</sonar.jdbc.password>
                <sonar.host.url>http://192.168.1.97:9000/</sonar.host.url>
            </properties>
        </profile>
    </profiles>

2.ecplise中使用选择pom.xml文件,点击右击,选择run as ->maven build 

3.User settings 选择我们本地maven的setting.xml配置文件。在Goals中输入命令 clean install sonar:sonar,点击running

以上是关于sonarQube使用maven进行检查的主要内容,如果未能解决你的问题,请参考以下文章

SonarQube + Maven 进行代码分析

利用 SonarScanner 静态扫描 Rainbond 上的 Maven 项目

Jacoco和Tycho surefire的Eclipse RCP插件代码介绍

在idea intellij中使用Sonarqube进行代码检查

Maven 和 SonarTsPlugin 的 SonarQube 扫描仪无法运行节点

SonarQube4.4+Jenkins进行代码检查实例之三-单元測试分析