I can use Maven + Clover to generate code coverage report (in target\site\clover). But I found the instrumented classes is in target\classes, could I move it to other directory?
The reason is that Maven will package all target\classes into final jar but I don't need it in my jar. Another reason is we want to run FindBug and it will analyze target\classes.
Maven goal is "clean clover2:setup install clover2:aggregate clover2:clover"
I found one similar question but it's for Ant and I use Maven. Changing location of Clover instrumented classes