最新的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
个文件中配置所有声纳参数?
答案 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
配置阅读 <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>