今天   换了一个IDE  然后 运行 maven的时候 报了一个 这个 错误 我记得以前 我遇到过   所以 把解决方法 记下来吧 原因 maven插件需要使用jdk 的  但是 eclipse默认是在jre 上面运行的 所以 解决方法 就 很简单了   将jre 改为 jdk  就行了  (jdk 包含jre  ) window->preference-> java->installed jres 添加JDK     我的是 添加过的 去自己jdk 安装目录  然后 找到  就行 …
解决方案.删除掉,然后重新添加. 然后remove掉 然后Add  Library…
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? 你应该指定一个JDK,而不是一个JRE.显示的JRE HOME,但是需要的是完整的JDK. 解决: Eclipse-->Window-->preferences-->Java-->Installed JREs 选择目录, 找到jdk所在位置 如果发现已经配置了, 那就remove后重新在配一…
打包过程中报错如下: No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK [INFO] Scanning for projects... [INFO] [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilde…
问题描述: 在创建SpringMVC项目运行构建项目的时候,发现构建失败.报错信息为Maven-No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? 意思是需要JDK环境而不是JRE环境. 问题解决: 在项目里面把[windows]--[preference]--[Java]--[Installed JREs]里面把JRE改为JDK即可. 修改之后就可以成功…
maven编译项目时出错,提示信息如下: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (default-testCompile) on project springside-core: Compilation failure [ERROR] No compiler is provided in this environment. Perhaps you…
maven install项目时出错,提示信息如下: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (default-testCompile) on project springside-core: Compilation failure [ERROR] No compiler is provided in this environment. Perhap…
问题描述: No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK 解决方案:  1- MyEclipse菜单 - Window - Preferences- Java - Installed JREs 将配置的JRE定位到JDK,最好是修改为jdk1.7 现在仍在探索,为什么我现在使用的MyEclipse( 版本2015 CI )里面的Maven JDK下拉选…
[INFO] Scanning for projects...[INFO]                                                                         [INFO] ------------------------------------------------------------------------[INFO] Building ros 0.0.1-SNAPSHOT[INFO] --------------------…
错误: [ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? 解决方法: 1.如果是Eclipse时,应该是安装好JDK后Eclipse默认使用的是JRE,所以只要调节回来即可. 两种方式都可行: ① ②. 2.如果一个Maven项目导入Eclipse之后,而上面又没有设置成JDK的路径时,此时也会出现如上错误,那么解决方法就是把Eclips…