Reputation: 1664
How do I make Maven generate a list of all of the plugins that it recognizes?
Upvotes: 38
Views: 22216
Reputation: 128829
"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.
Upvotes: 43