Sonar : any feedback ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T02:23:04Zhttp://stackoverflow.com/feeds/question/320676http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/320676/sonar-any-feedback2Sonar : any feedback ?Le Barde2008-11-26T13:22:23Z2009-10-02T15:07:13Z
<p>Hi all,</p>
<p>I am currently doing a little study over Sonar and (why not) other tools to manage code quality.</p>
<p>I did not found the documentation much clear nor extended and I have some questions.</p>
<p>Does somebody know and use it ? How can one integrate sonar into a complex project ? Can we manage a Perl or C project with Sonar & Maven 2?</p>
<p>I would also appreciate if sombody could give me feedbacks about Sonar.</p>
<p>Regards,
Le Barde.</p>
http://stackoverflow.com/questions/320676/sonar-any-feedback/402896#4028960Answer by lImbus for Sonar : any feedback ?lImbus2008-12-31T12:35:39Z2008-12-31T12:35:39Z<p>other tools ?</p>
<p>I have only used <a href="http://www.scitools.com/products/understand/" rel="nofollow">Understand for C</a> in the past, and of course lint.</p>
http://stackoverflow.com/questions/320676/sonar-any-feedback/758943#7589434Answer by Macalendas for Sonar : any feedback ?Macalendas2009-04-17T03:49:23Z2009-04-17T03:49:23Z<p>I use Sonar and it's great. As of now, it only supports Java code, thought.
From their website:</p>
<blockquote>
<p>Sonar currently covers Java and PL/SQL
languages. However, Sonar is highly
extensible and can therefore embark
plugins to cover new languages</p>
</blockquote>
<p>My experience: it's great. Really. If you use java, sonar is a must-have, along with Hudson.
If you doesn't, support the community and help them extend sonar to other languages. The best and coolest feature that sonar has is the time-machine stuff. It's really impressive!</p>
http://stackoverflow.com/questions/320676/sonar-any-feedback/1088657#10886570Answer by Mercer Traieste for Sonar : any feedback ?Mercer Traieste2009-07-06T18:52:39Z2009-07-06T18:52:39Z<p>I also recommend Sonar, we used it for several months now.</p>
<p>It's very easy to install and setup. We configured several projects with 500k lines of code in 2 days. We needed to:</p>
<ul>
<li>install sonar</li>
<li>integrate it with a continuous integration server - we used Apache Continuum</li>
<li>write a maven pom.xml build file for each project; it needs to do "test"</li>
<li>sonar is called with "mvn clean compile sonar:sonar"</li>
</ul>
http://stackoverflow.com/questions/320676/sonar-any-feedback/1477409#14774090Answer by Peter Kahn for Sonar : any feedback ?Peter Kahn2009-09-25T13:52:59Z2009-09-25T13:52:59Z<p>I just started using sonar and I'm pretty pleased by it. I like the reporting and I like the fact that cobertura just worked with no modification to my maven poms. I have one team using clover and one that doesn't. So, I'll be interested to see how it handles that.</p>
<p><strong>Sonar and Nexus:</strong>
I struggled with getting sonar's internal maven repository to feed into my nexus repository as a proxy. It just didn't work (not sure why, but I think it has to do with the last of browse rights on the sonar repos). </p>
<p>Updating my maven-settings to exclude sonar worked quickly and easily. So, I'm going to use that in place of getting nexus and sonar to cooperate for now...</p>
<pre><code><mirrorOf>*,!sonar</mirrorOf>
</code></pre>
http://stackoverflow.com/questions/320676/sonar-any-feedback/1510123#15101230Answer by romaintaz for Sonar : any feedback ?romaintaz2009-10-02T15:07:13Z2009-10-02T15:07:13Z<p>I use Sonar for almost 2 years now, and I really appreciate this tool.</p>
<p>Concerning your questions about support of none Java languages, for the moment Sonar is only focused on Java and PL/SQL (this is a commercial plugin), but will also be soon able to analyze PHP projects. In addition to that, several <a href="http://docs.codehaus.org/display/SONAR/Sonar+Plugin+Library/" rel="nofollow">plugins</a> are being developed, in particular to support C and C++ languages.</p>
<p>Le Barde, I see that you are french, so you could read the french manual I wrote <a href="http://linsolas.developpez.com/articles/java/qualite/sonar/" rel="nofollow">here</a>. I recently updated this guide, when the version 1.10 was just released!</p>