Synchronization failure with synchronization - sonar integration error in eclipse

The steps followed

-> Installed sonar plugin in Eclipse 4.2.2 by following these steps: http://eclipse.dzone.com/articles/static-code-analysis-and

-> Build a project using the mvn sonar: sonar command.

-> Right-click the project in Eclipse to link the sonar and get the following error in the "Problem Popup"

"Sync problems" a problem has occurred. Error executing request org.sonar.wsclient.issue.IssueQuery@d6cd19

How to fix it? Any help?

+5
source share
1 answer

Try SonarLint for Eclipse . Much faster than the SonarQube Eclipse plugin, it allows you to perform SonarQube analysis without having to connect to a SonarQube server.

If you want to connect to the SonarQube server anyway to synchronize the analysis configuration, this is also possible, but not necessary.;)

+1
source

Source: https://habr.com/ru/post/1214643/


All Articles