您的位置:首页 > Web前端

执行第一maven用例出错:Unknown lifecycle phase "complile".

2011-06-03 08:18 441 查看
下面是出错误的详细的信息:

[ERROR] Unknown lifecycle phase "complile". You must specify a valid lifecycle p hase or a goal in the format : or :[:]:. Available lifecycle phases are: validat e, initialize, generate-sources, process-sources, generate-resources, process-re sources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-clas ses, test, prepare-package, package, pre-integration-test, integration-test, pos t-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-s ite, site, post-site, site-deploy. -> [Help 1]

解决办法:https://cwiki.apache.org/confluence/display/MAVEN/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.

]mvn install
This runs the lifecycle phase install and all its predecessor phases like compile and test. Please see Introduction to the Build Lifecycle for more information about available lifecycle phases.

Invoke a plugin goal via the plugin prefix, e.g.
]mvn compiler:compile


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.

Invoke a plugin goal via the versionless plugin coordinates, e.g.
]mvn org.apache.maven.plugins:maven-compiler-plugin:compile


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.

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.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐