未知的生命周期阶段".mainClass=com.blobs.quickstart.App"



我运行了这个演示(使用PowerShell)。一切都很好,直到我输入这行:

mvn exec:java -Dexec.mainClass="com.blobs.quickstart.App"-Dexec.cleanupDaemonThreads = false

,然后我得到了下面的异常:

[INFO]
[INFO] --------------< com.blobs.quickstart:blob-quickstart-v12 >--------------
[INFO] Building blob-quickstart-v12 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.497 s
[INFO] Finished at: 2019-11-27T18:49:01-05:00
[INFO] ------------------------------------------------------------------------
[ERROR] Unknown lifecycle phase ".mainClass=com.blobs.quickstart.App". You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-site, site, post-site, site-deploy. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/LifecyclePhaseNotFoundException

这是我遵循步骤的链接https://learn.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-java?tabs=powershell#get-the-connection-string

即使使用插件,我也得到了错误消息。我通过改变双引号(我也在使用Powershell)来修复它:

mvn exec:java -D"exec.mainClass=my.main.Clazz" [other args with same quote pattern]

正如ManojReddy-MSFT建议的:

在大多数情况下,出现此错误是因为缺少插件http://www.mojohaus.org/exec-maven-plugin/index.html

你能验证你是否有这个插件吗?如果没有,你可以试试这个插件吗?

您也可以参考"未知生命周期阶段"mvn。您必须指定一个有效的生命周期阶段或目标"当使用Azure部署应用程序时

相关内容

最新更新