使用mvn声纳运行声纳分析:声纳忽略sonar-project.properties

时间:2017-07-14 05:34:56

标签: java maven sonarqube

最新的3.3声纳maven插件和5.6 LTS作为网络服务器 使用mvn sonar:sonar运行声纳分析 (Scanner for Maven
忽略sonar-project.properties文件。 (有许多参数https://docs.sonarqube.org/display/SONAR/Analysis+Parameters

这是预期的行为吗? 那么我是否必须在pom.xml个文件中配置所有声纳参数?

2 个答案:

答案 0 :(得分:17)

这是正确的:Maven的扫描程序忽略了sonar-project.properties文件。

要在使用Maven扫描仪时传递分析参数, 将它们设置为<properties>中的pom.xml,例如:

<properties>
    <sonar.host.url>http://yourserver</sonar.host.url>
</properties>

或者,您也可以在命令行上使用-D传递参数,例如:

mvn sonar:sonar -Dsonar.host.url=http://yourserver

答案 1 :(得分:8)

其他方式是通过Maven Properties Plugin

配置阅读

Q&A

   <build>    
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>properties-maven-plugin</artifactId>
        <version>1.0.0</version>
        <executions>
          <execution>
            <phase>initialize</phase>
            <goals>
              <goal>read-project-properties</goal>
            </goals>
            <configuration>
              <files>
                <file>sonar-project.properties</file>
              </files>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>