我如何知道 Maven 插件的作用?

发布于 2024-10-09 12:35:34 字数 310 浏览 1 评论 0原文

我的任务是加速大型 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2024-10-16 12:35:34

您可以使用帮助插件来获取 Maven 插件的描述(如果它们提供的话):

mvn help:describe -Dplugin=org.apache.maven.plugins:maven-compiler-plugin

Name: Maven Compiler Plugin
Description: The Compiler Plugin is used to compile the sources of your project.
Group Id: org.apache.maven.plugins
Artifact Id: maven-compiler-plugin
Version: 2.3.2
Goal Prefix: compiler

This plugin has 3 goals:

compiler:compile
  Description: Compiles application sources

...

如果您想要更多信息,请在命令中添加 -Ddetail 线:

mvn help:describe -Dplugin=<groupid>:<artifactid> -Ddetail

You can use the help plugin to get a description for Maven plugins (if they provide it):

mvn help:describe -Dplugin=org.apache.maven.plugins:maven-compiler-plugin

yields

Name: Maven Compiler Plugin
Description: The Compiler Plugin is used to compile the sources of your project.
Group Id: org.apache.maven.plugins
Artifact Id: maven-compiler-plugin
Version: 2.3.2
Goal Prefix: compiler

This plugin has 3 goals:

compiler:compile
  Description: Compiles application sources

...

If you want to have even more, then add -Ddetail to the command line:

mvn help:describe -Dplugin=<groupid>:<artifactid> -Ddetail
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文