user2106282
user2106282

Reputation: 51

Step by Step guide for Sonar Plugin Development

I have gone through the http://docs.codehaus.org/display/SONAR/Developing+Plugins but unfortunately it does not give detailed steps. Can some one help me understand how I need to call a code review tool that uses ANTLR for parsing the code files and then capture the output into Sonar As well how do I start maintaining the rules based on XPATH for my code analysis tool on Sonar as it is done for Java/Javascript?

Upvotes: 3

Views: 5091

Answers (2)

Simon Brandhof
Simon Brandhof

Reputation: 5136

A good starting point is to have a look at the code of existing plugins: http://github.com/sonarqubecommunity

Upvotes: 2

ppapapetrou
ppapapetrou

Reputation: 1663

I suggest that you use the sonar dev mailing list : dev at sonar dot codehaus dot org. Developing a Sonar plugin can't simply covered by a "guide"...

Upvotes: 0

Related Questions