Does anyone know if there is SONAR extension for filtering violations by user/author who introduced them ?

Idea is to pick a user, and SONAR would list all violations made in the code by that specific user.

Maybe some ideas could be provided if it is possible to achieve such functionality ?

Thanks.

link|improve this question

67% accept rate
sonar has a source code management plugin: docs.codehaus.org/display/SONAR/SCM+Activity+Plugin. But this just marks who last changed a line in the view. – oers Jan 23 at 12:54
Agreed. You can use Sonar's code review functionality to assign violations to users. Presumably one would need a plugin which extends this functionality to auto-assign these violations based on the last user to touch the particular file/package – Mark O'Connor Jan 23 at 18:48
Why not raise a JIRA request to the Sonar developers? – Mark O'Connor Jan 23 at 18:49
Thanks you for fast and helpful replies. – Xeperis Jan 23 at 20:41
1  
this is something we are working on, and you should have some first functionalities in Sonar 2.14. So stay tuned! ;-) – Fabrice - Sonar Team Jan 29 at 14:48
feedback

1 Answer

You could also use the REST-API to get the violations (something like 'http://sonar-host/api/violations?resource=1&depth=-1&priorities=BLOCKER,CRITICAL,MAJOR') to get the interesting violations and then use 'svn annotate' to get the relevant annotions and therefore the user. That is what I did, and in the meantime it works well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.