We have an Android/Blackberry project with a common part. That part, obviously, is written to compile to both Android and Blackberry targets, and, consequently, cannot use some of the newer Java features (e.g., Integer.valueOf). I'd like to skip some of the rules specifically for that part. Is there a way to do this?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

If you separate the common part to an own project you can add a new Quality Profile in Sonar (where you deactivated these rules) and assign it to your common project.

Apart from that you can use the

// NOSONAR

comment to supress a warning on a single line.

link|improve this answer
Sonar 2.5 introduced a "SuppressWarning" annotation which also useful for switching off analysis jira.codehaus.org/browse/SONAR-1760 – Mark O'Connor Jul 16 '11 at 12:06
Unfortunately, annotations are among those newer features that are not supported on Blackberry. – Fixpoint Jul 21 '11 at 8:48
As to the NOSONAR comment, there are too many violations to comment them all. – Fixpoint Jul 21 '11 at 8:48
1  
So follow the original advice and create a new more permissive quality profile in Sonar. You can make this the default for all projects. – Mark O'Connor Jul 25 '11 at 11:56
feedback

Your Answer

 
or
required, but never shown

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