当前位置: 首页 > 知识库问答 >
问题:

无法执行目标org.codehaus.mojo

孟昆
2023-03-14

有关错误和可能的解决方案的更多信息,请阅读以下文章:http://cwiki.apache.org/confluence/display/maven/mojoExecutionException

共有1个答案

丰俊艾
2023-03-14

最有可能的是,您只需要从该错误中向上滚动。

我只是在java文件中放了一些东西,这样它就不会编译了,然后尝试运行它,得到了这样的结果:

--- exec-maven-plugin:1.2.1:exec (default-cli) @ mavenproject3 ---
Error: Could not find or load main class wshackle.mavenproject3.Test1
------------------------------------------------------------------------
BUILD FAILURE
------------------------------------------------------------------------
Total time: 2.122s
Finished at: Tue Aug 18 21:36:33 EDT 2015
Final Memory: 5M/78M
------------------------------------------------------------------------
Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) on project mavenproject3: Command execution failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read the following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

您粘贴的整个错误确实是通用的,几乎任何错误都会被打印出来。但是如果你向上滚动,你可以看到在我的例子中,我有一个构建失败。要查看我的情况中的错误是什么,我将重新构建(Shift F11)。当出现运行错误时,这可能是一个好主意。

 类似资料: