Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sonar skipping all modules except root one

I'm trying to run sonar on entire project using maven, but for some reason it skips submodules and analyse only root module. Is there any explanation of such a strange behaviour?

Any help is greatly appreciated!

Here is maven final output:

Here is maven final output


ADDITION

mvn clean install doesn't skip anything, but mvn sonar:sonar do.


like image 812
mr.nothing Avatar asked Feb 25 '13 08:02

mr.nothing


1 Answers

The SonarQube Maven Plugin is an aggregator plugin. It's executed only on the root module. That's the reason why Maven flags sub-modules as SKIPPED, even if they are correctly analysed.

like image 175
Simon Brandhof - SonarSource Avatar answered Nov 19 '22 22:11

Simon Brandhof - SonarSource