使用Intellij Idea导入一个java项目的时候,我遇到了这个失败的错误。
MojoExecutionException
The packaging for this project did not assign a file to the build artifact
Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.4:install (default-cli) on project getpassword: The packaging for this project did not assign a file to the build artifact
相同的项目用sts导入则没问题,所以觉得很奇怪,但是可以定位为配置问题
后来点击了maven中Lifecycle下的install,安装了插件之后,项目正常运行。
在plugin中的clean和install也可以试一下,我这次是先点击了plugin下的clean和install,然后点击Lifecycle下的install,完美解决问题。