I’ve been given the task of speeding up a large maven build, and while I’ve worked with Ant quite a bit I’m new to Maven.
Looking through the various pom.xml files I see plugins, but I can’t tell what they do. If I go to https://repository.sonatype.org/index.html#welcome and type the various plugin names I get pretty much everything except a description of what the plugin does.
Is there a way to tell what a maven plugin does?
Thanks.
You can use the help plugin to get a description for Maven plugins (if they provide it):
yields
If you want to have even more, then add
-Ddetailto the command line: