簡體   English   中英

如何在調用maven時查看所有帶有目標調用的插件?

[英]How to see all plugins with goals invoked when calling maven?

我要執行以下命令:

mvn deploy

但是,我想查看所有已調用的插件以及它們在構建的哪個階段被調用。

為了實現這一點,我想象以下命令:

mvn --simulate-only --show-phase-plugins deploy

那些開關不存在。

我該如何告訴Maven這樣做?

Maven的3.0.4

您可以使用幫助插件

mvn help:describe -Dcmd=compile

它將產生如下輸出:

...
[INFO] [help:describe]
[INFO] 'compile' is a phase corresponding to this plugin:
org.apache.maven.plugins:maven-compiler-plugin:compile

It is a part of the lifecycle for the POM packaging 'jar'. This lifecycle includes the following phases:
* validate: NOT DEFINED
* initialize: NOT DEFINED
* generate-sources: NOT DEFINED
* process-sources: NOT DEFINED
* generate-resources: NOT DEFINED
* process-resources: org.apache.maven.plugins:maven-resources-plugin:resources
* compile: org.apache.maven.plugins:maven-compiler-plugin:compile
* process-classes: NOT DEFINED
* generate-test-sources: NOT DEFINED
* process-test-sources: NOT DEFINED
* generate-test-resources: NOT DEFINED
* process-test-resources: org.apache.maven.plugins:maven-resources-plugin:testResources
* test-compile: org.apache.maven.plugins:maven-compiler-plugin:testCompile
* process-test-classes: NOT DEFINED
* test: org.apache.maven.plugins:maven-surefire-plugin:test
* package: org.apache.maven.plugins:maven-jar-plugin:jar
* pre-integration-test: NOT DEFINED
* integration-test: NOT DEFINED
* post-integration-test: NOT DEFINED
* verify: NOT DEFINED
* install: org.apache.maven.plugins:maven-install-plugin:install
* deploy: org.apache.maven.plugins:maven-deploy-plugin:deploy

有關更多信息,請參閱幫助插件-http: //maven.apache.org/plugins/maven-help-plugin/examples/describe-configuration.html

這是我解決問題的方法:

mvn help:describe -Dcmd=deploy

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM