I am trying to decorate the pull requests with sonarcloud analysis in bitbucket cloud.
I am using the following command from the Jenkins pipeline
mvn sonar:sonar \
-Dsonar.projectKey={key} \
-Dsonar.organization={org} \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.login={token} \
-Dsonar.pullrequest.base={...} \
-Dsonar.pullrequest.branch={...} \
-Dsonar.pullrequest.key=13 \
-Dsonar.pullrequest.provider=bitbucketcloud \
-Dsonar.pullrequest.bitbucketcloud.owner={uuid} \
-Dsonar.pullrequest.bitbucketcloud.repository={uuid} "
Earlier i got some warnings like - “the organization is not bound”. Which have been resolved.
I see the code quality section to be empty. There is no information abt the issues in the pull request.