Setup sonar-runner for multiple java projects

2019-01-18 22:03发布

I am trying to run sonar-runner to analyze multiple Java projects in one go. According to the documentation it is just a matter of creating a sonar-project.properties file for each project. But it is not clear to me where exactly I have to put these sonar-project.properties files.

I tried to add multiple .properties files in the $SONAR_RUNNER_HOME/conf folder but the runner does not seem to pick them up. It only sees the sonar-project.properties file.

Any suggestions on how to run sonar-runner for multiple projects?

3条回答
够拽才男人
2楼-- · 2019-01-18 22:37

Since 2.0, Sonar runner works with multiple modules, as described here

查看更多
不美不萌又怎样
3楼-- · 2019-01-18 22:49

Actually it is quite simple to let the sonar runner analyze multiple projects as long as they are in the same file system. Just put a properties file in a directory that is not to far away from the projects. Then declare each of your projects in this properties file.

Lets assume you have 4 projects in dev/general/BasicStuff, dev/service/CoolStuff, dev/utility/UtilStuff and dev/display/FrameWorkStuff.

As described in hereWay #2 you create a file in dev which contains the line

sonar.modules=BasicStuff,CoolStuff,UtilStuff,FrameWorkStuff

And for each of the "modules" a line like

BasicStuff.sonar.projectBaseDir=general/BasicStuff
CoolStuff.sonar.projectBaseDir=service/CoolStuff

Inside the project directories you in turn create a file which contains the other needed information, e.g.

sonar.projectName=BasicStuff
sonar.sources=src

If you start sonar runner with the top level properties as target you get a comprehensive result which shows metrics across the projects as well as allowing you to drill into each of them.

Hope this was what you were looking for.

查看更多
时光不老,我们不散
4楼-- · 2019-01-18 23:00

The Sonar runner supports projects with multiple modules. It doesn't support the analysis of multiple projects in one invocation.

The Java runner needs to be run against each project, picking up the properties file in each project directory.

查看更多
登录 后发表回答