Reputation: 5967
I need to integrate SonarQube with IBM Websphere Commerce.
How can it be done? I have googled and read multiple articles and blogs but there is no clear guideline to follow, If anyone here has experience of SonarQube integration with IBM WCS, please let me know where to start from and what to do to get code coverage.
I have read somewhere that there is a Sonar plugin for IBM RAD but it was also written that it is deprecated now, then what is now being used in place of that plugin?
Upvotes: 0
Views: 1342
Reputation: 22824
The SonarQube platform offers static code analysis, so not only is there no need for integration, but there's also no possibility.
As I remember, WebSphere runs Java code, so you simply need to check out your project, compile it, and analyze it.
That assumes you've set up a SonarQube server (it's a free download). Then you're ready to analyze.
Upvotes: 0