I have a Java project which consists of a couple of modules. I am using Sonar to statically analyse my code. Currently I am using sonar-runner to analyse each of the modules, and they appear as different Projects in the main page of Sonar. I would like to see the main project name on the main page, and, once I will click on it, and than on "Components" - to see all of it's modules as sub-projects - just like it appears here:
相关问题
- slurm: use a control node also for computing
- How to read a string array in appSettings.json?
- Sonarqube: Squid Rules customization/suppression
- Visual Studio 2015 : SQL Data Source : Unable to r
- 2 instances of Sonar on same machine
相关文章
- SonarQube: How to suppress a warning in Kotlin cod
- How to check entire rails project for compilation
- @Nullable and SonarQube 'Conditionally execute
- How to use relative line numbering universally in
- On scala project - Getting error GC overhead limit
- Debugging with Eclipse CDT and GDB: can't find
- Log4j2 using {} against using %d or %s
- Virtual Box limit Bandwith on network [closed]
No it's not possible with Java runner. Only Maven plugin and Ant task support project structures with modules.
Note that the modules of C# projects are automatically created from the VisualStudio solution file, even if the Java runner is used.
Do you project use Maven ?If it is the case it should work fine if you have a pom.xml for each module and one for your parent module.