Details
Description
We want to add reporting for:
JUnit, Emma, Cobertura, JDepend, pmd, findbugs, checkstyle
Issue Links
| This issue dependent on: | ||||
| GRADLE-555 | Add CodeNarc support |
|
|
|
| GRADLE-554 | Add checkstyle support |
|
|
|
1. |
Add junit reporting | |
|
Hans Dockter | |
| 2. | Add cobertura reporting | |
|
Unassigned |
As per the findbugs' bug report (http://sourceforge.net/tracker/index.php?func=detail&aid=2908672&group_id=96405&atid=614693), its ant task is not scalable and may not be executable with big project.
It is because the current ant task implementation depends on 'edu.umd.cs.findbugs.FindBugs' class, which assumes a findbug installed and executes the findbugs via command line.
It will be nice if the further findbugs plugin directly depends on 'edu.umd.cs.findbugs.FindBugs2' class, which relaxes this assumption. The current maven-findbugs-plugin depends on 'edu.umd.cs.findbugs.FindBugs2' maybe it is a good starting point....