Hello.
My issue involves attempting to perform analysis on a Windows machine for a simple maven project. The first issue that occurred (and has occurred on several other machines for .Net projects) is a Build Failure as follows
Script
mvn sonar:sonar
-Dsonar.projectKey=
-D-Dsonar.organization=
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.login=
Error
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 10.155 s
[INFO] Finished at: 2019-10-02T12:01:28-04:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:3.7.0.1746:sonar (default-cli) on project : Unable to execute SonarQube: Fail to get bootstrap index from server: Failed to connect to localhost/0:0:0:0:0:0:0:1:9000: Connection refused: connect → [Help 1]
[ERROR]
The above issue seems to be because the analysis rejects the specified host (sonarcloud.io) and attempts to use localhost. Now this was (possibly) remediated by modifying settings.xml in $MAVEN_HOME, removing localhost as shown below and replacing it with https://sonarcloud.io.
<sonar.host.url>
localhost
</sonar.host.url>
The error after is as follows that I am stuck on
[INFO] SCM provider for this project is: git
[INFO] 41 files to be analyzed
[INFO] 40/41 files analyzed
[WARNING] Missing blame information for the following files:
[WARNING] * pom.xml
[WARNING] This may lead to missing/broken features in SonarQube
[INFO] 3 files had no CPD blocks
[INFO] Calculating CPD for 37 files
[INFO] CPD calculation finished
[INFO] Analysis report generated in 947ms, dir size=949 KB
[INFO] Analysis report compressed in 374ms, zip size=294 KB
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Skipping
[INFO] This project has been banned from the build due to previous failures.
[INFO] ------------------------------------------------------------------------
I’m not sure what blame information is or why the pom.xml is the cause. Or is this whole issue due to the project now being banned? Also if you have a more suitable answer for how to fix the first localhost issue that would help me with other stations also having that issue.