我如何知道 Maven 插件的作用?
我的任务是加速大型 Maven 构建,虽然我已经使用 Ant 相当多了,但我对 Maven 还很陌生。
查看各种 pom.xml 文件,我看到了插件,但我不知道它们的作用。如果我去 https://repository.sonatype.org/index.html#welcome并输入各种插件名称,除了插件功能的描述之外,我几乎得到了所有内容。
有没有办法告诉 Maven 插件的作用?
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用帮助插件来获取 Maven 插件的描述(如果它们提供的话):
如果您想要更多信息,请在命令中添加
-Ddetail 线:
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
-Ddetail
to the command line: