Hello,
I installed developer edition of Sonarqube Version 10.3.0.82913, and configured Gitlab integration.
When it analyses a merge request it just adds summary comment on the whole merge request.
I would prefer it to add inline comments in the merge requests (I’ve seen it earlier with github integration).
Can I get same functionality for GitLab?
Apart from token and I’m passing the following pullrequest arguments in the pipeline (it did not work without them even though the instruction says it should work out of the box with gitlab):
mvn clean verify sonar:sonar
-Dsonar.host.url=${SONAR_HOST_URL}
-Dsonar.projectKey=${SONARQUBE_PROJECT_KEY}
-Dsonar.token=${SONAR_TOKEN}
-Dsonar.qualitygate.wait=true
-Dsonar.pullrequest.key=${CI_MERGE_REQUEST_IID}
-Dsonar.pullrequest.branch=${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}
-Dsonar.pullrequest.base=${CI_MERGE_REQUEST_TARGET_BRANCH_NAME}
Am I missing some parameter to get the comments INLINE?