I have a bunch of Maven projects building in Hudson with Sonar sitting in the side-lines. Sonar gives me Sonar stats, FindBugs stats, and code-coverage.

I've noticed that regardless of if I use Sonar or if I use EMMA via Maven directly, the entire build cycle runs twice. This includes init (which in my case, reinitializes the database -- expensive) and unit tests (a few hundred -- also expensive).

How can I prevent this? I did a lot of reading, and it seems like this is due to the design of code-coverage plugins -- to keep uninstrumented classes separated from instrumented ones.

I've tried configurations like:

  • Maven runs: deploy, EMMA
  • Maven runs: deploy; deploy to Sonar on completion
link|improve this question

feedback

2 Answers

To add to @Strawberry's answer, you could reuse the unit test reports instead of running them again. Refer to the section Reuse existing unit test reports in the sonar documentation

Once this is done, you can configure the following in Hudson

clean deploy sonar:sonar
link|improve this answer
feedback

The sonar documentation recommends running the sonar plugin in 2 stages:-

mvn clean install -Dtest=false -DfailIfNoTests=false

mvn sonar:sonar

The tests are bypassed in the first phase and run implicitly in the second stage.

A one line alternative is to run the following command:-

mvn clean install sonar:sonar -Dmaven.test.failure.ignore=true

but this will run the tests twice - as you have found.

link|improve this answer
I don't run mvn manually; I do it through Hudson. How does that translate into this solution? – ashes999 Mar 17 '11 at 2:23
feedback

Your Answer

 
or
required, but never shown

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