我是靠谱客的博主 漂亮红酒,最近开发中收集的这篇文章主要介绍IDEA intellij maven项目打包报错Please ensure you are using JDK 1.4 or above and not a JRE解决方法!,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在使用intellij打包maven项目时报以下异常:

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project com.xxx: Compilation failure

Unable to locate the Javac Compiler in:
E:JDK1.8jdk_1.8.0_20..libtools.jar
Please ensure you are using JDK 1.4 or above and not a JRE (the com.sun.tools.javac.Main class is required).
In most cases you can change the location of your Java installation by setting the JAVA_HOME environment variable.

报错原因一:

项目pom文件中配置的maven插件版本过低,比如我当时是配置的2.3.2,无法支持Java1.8版本的。

解决办法:修改maven插件的版本为较新版本。

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>

报错原因二:

编译maven项目使用的JDK->JRE->lib中没有tools.jar,我也很奇怪为什么会这样。

解决办法:

只需要在找到你自己电脑上Java JDK的路径,比如我是C:Program FilesJavajdk1.8,然后进入lib里面把tools.jar复制到JRE的lib中,然后在你的intellij中重新配置一下JDK(不重新配置的话tools.jar无法添加进来使用),然后右键项目,选择Rebuild Module XXX,之后再进行打包就没问题了。

最后实在不行的话只能修改JAVA_HOME,然后右键项目选择Show in Explorer进入到项目目录,自己通过maven命令打包了。

目前就遇到了这两种情况,有其他的问题可以留言共同探讨。

 

 

最后

以上就是漂亮红酒为你收集整理的IDEA intellij maven项目打包报错Please ensure you are using JDK 1.4 or above and not a JRE解决方法!的全部内容,希望文章能够帮你解决IDEA intellij maven项目打包报错Please ensure you are using JDK 1.4 or above and not a JRE解决方法!所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部