Reputation: 73
I recently installed SonarQube 5.1 on machine on my local network. I have successfully run the Maven plugin on one of my projects and everything seems to be working fine. I also installed the Eclipse plugin (Luna) from the marketplace and have been able to run an analysis within eclipse. The issues show up in the SonarQube Issues
view. However, both the SonarQube Issue Editor
and SonarQube Web Browser
are completely blank.
This appears to be similar to this SO post, but the bug referenced there has been marked fixed. I would post a screenshot, but I don't have the required reputation.
Has anyone else encountered this?
Upvotes: 1
Views: 307
Reputation: 73
Thanks Julien, the tip on the embedded browser led me to the solution. The problem was in fact caused by missing libraries on my system that were preventing the internal browser from functioning properly. The solution was to install the proper webkit-gtk libraries for my system. On Gentoo, the default is to install webkit-gtk:3, which is incompatible with SWT. The correct version can be installed by running emerge net-libs/webkit-gtk:2
on the command line as described in this SO answer.
Upvotes: 1