on the main page of a Jenkins job, I see the SonarQube icon, which should be a link, but it's just text:
I use...
- Jenkins 1.596.2 (also tried 1.609.1)
- Jenkins SonarQube-Plugin 2.1 (also tried 2.2.1)
- Maven 3.3.1
- sonar-maven-plugin:2.6 (when configuring SonarQube post build action)
- sonar runner 2.4 (when configuring SonarQube analysis build step)
After browsing the source code of the jenkins sonarqube-plugin, I found that SonarUtils.extractSonarProjectURLFromLogs()
seems to be broken. It parses the console output for the regexp "ANALYSIS SUCCESSFUL, you can browse (.*)
".
My console output never prints this line. It just prints "ANALYSIS SUCCESSFUL
".
Is this a known issue?