Make Maven list all plugins used?
How do I make Maven generat开发者_JAVA技巧e a list of all of the plugins that it recognizes?
"Recognizes" or "uses"? You can see all the plugins configured in a particular project using mvn help:effective-pom
. A global list of all available maven plugins would probably be impossible to accurately compile. There are lists of a couple of major clusters of plugins at the maven site and at codehaus, but maven plugins can come from anywhere.
精彩评论