maven项目pom.xml文件Maven install时报错

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile (default-compile) on project mall-manager-web: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[ERROR] -> [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/MojoFailureException

报错原因是Eclipse默认是在jre上运行,maven install 编译需要jdk中的编译器,所以需要在eclipse中进行设置,
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
以上选择完成之后,maven项目pom.xml文件先Maven clean 在进行Maven install之后便不会再报以上错误。

发布了2 篇原创文章 · 获赞 0 · 访问量 45

猜你喜欢

转载自blog.csdn.net/qq_34665923/article/details/104433404