We have situation when project management asks to analyze multiple git repos with one sonar project - one analysis must contain analysis of all git repos.
That is:
We take git repo A
We take git repo B
We take git repo C
Run sonar analysis on git repos A, B, C at same time and they appear as one sonar analysis.
Is it possible?
Sure, you can. SonarQube will analyze the code you throw at it. If you clone 3 Git repos to a directory and start the scan from the root directory, your code will be analyzed.
With that being said, SonarQube generally expects a single git repository to be analyzed in a single SonarQube project, so some SCM-related behavior might not work as expected.