Hello All,
I am trying to workaround the sonar-project properties file to display my repo/code results under one project. For example,
Required project information
sonar.projectKey=COMBOARD_TEST:test_c
sonar.organization=COMBOARD_TEST
sonar.projectName=Test Repository 2
sonar.projectVersion=1.0
Specify the directory containing your source code
sonar.sources=test.c
Specify the directory where the Build Wrapper output is stored
sonar.cfamily.build-wrapper-output=build_wrapper_output_directory
Language used in the project (C or C++)
sonar.language=c
Encoding of the source files
sonar.sourceEncoding=UTF-8
The above is my property file. And on my Sonarqube server side. I am seeing the results under a new project called Test Repository 2. But my goal is to view multiple results like,
COMBOARD_TEST
-Test Repository 2 - main branch
-Test Repository 2 -feature branch
- Test Repo 1 - main branch
- Test Repo 1 - feature branch
Can I view my results like above step structure? or Sonar server only provides flat project results?
Also how to view the results per branch (main ,test ) for the same repo/ project? Do we need to put any additional flag in the command while exectuing from the host machine?