A list of handy plugins for the Eclipse IDE
- eCobertura – Allows Cobertura code coverage to be run from the IDE directly
- eclipse-cs – Enforces coding standards using the CheckStyle tool
- PMD – Scans Java code and reports potential problems
- M2Eclipse – Maven integration from Sonatype
- m2e-extensions – Works with version 0.10 of the M2Eclipse plugin. Can automatically setup Checkstyle and PMD configuration for Eclipse to match their configuration from the pom file if they are in it
- m2e-code-quality – Same as m2e-extensions, except this one works with version 0.12 of the M2Eclipse plugin
Note: both m2e-extensions and m2e-code-quality only work if you have the pmd and checkstyle plugins configured in the build section of the pom. They do not currently work if you have pmd and checkstyle configured in the reporting section of the pom.


[...] a previous post on Eclipse plugins, two excellent plugins were mentioned which can automatically set up your Eclipse project to use [...]