Sujen
Sujen

Reputation: 1664

Make Maven list all plugins used?

How do I make Maven generate a list of all of the plugins that it recognizes?

Upvotes: 38

Views: 22216

Answers (1)

Ryan Stewart
Ryan Stewart

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

Related Questions