Eclipse 中 运行 maven install 出现如下错误:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project springboot_jpa: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
这是由于在 Eclipse 中未指定 JDK,可以采用以下方法,设置一下JDK。
解决方案:
1、在 Eclipse 中,依次点击:指定 JDK 版本。
Eclipse --> Window --> Preferences --> Java --> Installed JREs
--> 对话框右侧点击 Add 按钮
--> Standard VM
--> next
--> JRE home ( Directory --> 选择 JDK 的安装路径 )
如下图:
2、检查 Maven 配置文件 settings.xml 中的配置是否正确;
3、检查网络是否正常,是否能够访问 Maven 仓库。