How to debug Maven plugin?
If you start your build with "mvnDebug clean install" instead of "mvn clean install" Maven will wait for a remote debugger to connect on port 8000. This should work for all plugin that to not run in their own JVM.
This requires Maven greater > 2.0.8 which I assume you are running.
See Debugging in Maven?