首页 > 代码库 > LifecyclePhaseNotFoundException(转)
LifecyclePhaseNotFoundException(转)
This error is generated if you try to invoke a build command that Maven does not understand. In general, you have the following options to perform build steps:
- Invoke a lifecycle phase, e.g.This runs the lifecycle phase
mvn install
install
and all its predecessor phases likecompile
andtest
. Please see Introduction to the Build Lifecycle for more information about available lifecycle phases. - Invoke a plugin goal via the plugin prefix, e.g.Eventually, the plugin prefix translates to a group id and artifact id of a plugin. Maven resolves plugin prefixes by first looking at the plugins of the current project‘s POM and next by checking the metadata of user-defined plugin groups.
mvn compiler:compile
- Invoke a plugin goal via the versionless plugin coordinates, e.g.To resolve the plugin version, Maven will first check the project‘s POM and fallback to the latest release version of the plugin that was deployed to the configured plugin repositories.
mvn org.apache.maven.plugins:maven-compiler-plugin:compile
- Invoke a plugin goal via the fully qualified plugin coordinates, e.g.
mvn org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile
You can freely mix all of these styles within a single command line.
The error described here is usually caused by typo in the command so be sure to check you specified a valid lifecycle phase.
https://cwiki.apache.org/confluence/display/MAVEN/LifecyclePhaseNotFoundException
LifecyclePhaseNotFoundException(转)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。