We build our projects with ant and happy with it.

The other day, I wished to give Sonar a try only to discover that it requires me to have maven. So, I guess I need some kind of pom.xml somewhere in my project.

There are three things I wish to avoid:

  • Learn maven right now (in general I may want to, but not now)
  • Migrate to maven from ant
  • Maintain two build scripts - one for ant and the other for maven.

Is it possible to have this pom.xml as minimal as possible and yet to be able to analyze the project with Sonar?

Thanks.

P.S.

Less demanding Sonar alternatives are welcome as well.

link|improve this question

61% accept rate
1  
Please, arrange your comment as an answer and I will mark it as such. – mark Dec 24 '11 at 21:02
done now. see below – aishwarya Dec 25 '11 at 6:06
feedback

2 Answers

up vote 3 down vote accepted

as requested, putting this as an answer:

SONAR comes with an ANT task: http://docs.codehaus.org/display/SONAR/Analyse+with+Ant+Task

Also look at http://frommyworkshop.blogspot.com/2011/04/analyse-with-ant-sonar-way.html

link|improve this answer
feedback

Sonar version 2.6 introduced an ANT task for running Sonar.

Code coverage reporting requires additional work. See the following answer:

SONAR - Measure Code Coverage using Cobertura

link|improve this answer
+1 for the other link about code coverage. – mark Dec 24 '11 at 21:02
feedback

Your Answer

 
or
required, but never shown

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