- ALM: GitHub
- CI: Jenkins
- Scanner command: (see details below)
- Languages of the repository: Java
- SonarCloud project: https://sonarcloud.io/dashboard?id=org.kie.soup%3Akie-soup-parent
- Pull request decoration: [DO NOT MERGE] Sonarcloud check by almope · Pull Request #232 · kiegroup/kie-soup · GitHub
- Error observed: No errors reported
- Steps to reproduce: Open a PR against the kie-soup project containing any bugs or other issues.
The Maven Sonar scan plugin is configured in the parent POM of the kie-soup project and enabled with the Maven profile sonarcloud-analysis
:
The command executed in our CI is the following. The properties defined within the sonarcloud-analysis
profile should be taken by the command if I’m not mistaken. There’s a previous JDK8 build of the project that generates the binaries and then we run a second step with just generating resources and enabling the profile to execute the analysis using JDK11.
mvn -B -s /path/to/settings.xml -nsu generate-resources -Psonarcloud-analysis -Denforcer.skip=true -Dsonar.login=****
The logs for the scan are clean, without errors, and we seem to send some data for the analysis as I can see in the SonarScanner context on the Background Tasks of the Administration section.
https://sonarcloud.io/dashboard?id=org.kie.soup%3Akie-soup-parent&pullRequest=232
Is there a way to further check what’s going on with the analysis? Or whether we are sending the appropriate data?
Many thanks in advance.
Alberto.