bootstrap class path not set in conjunction with -source 1.6

跟風遠走 提交于 2019-12-01 03:40:18

Quote from this post:

Java 5.0 and 6 used to have poor support for compiling classes to target older versions of Java. It always supported the previous version, but often no more. Even if you could compile for previous version, you had to be careful not to use functionality which did exist in the previous versions.

You should either include -Xbootclasspath when using javac:

javac -Xbootclasspath:/path/to/jdk6/rt.jar -target 1.6 -source 1.6 Main.java

or compile using -target 1.7 (or higher of course):

javac -target 1.7 -source 1.7 Main.java

or use javac of jdk 6:

/path/to/jdk6/bin/javac Main.java

I solved it using below configuration in my compiler plugin

<fork>true</fork>
<executable>${JAVA_HOME}/bin/javac</executable>
<compilerVersion>1.7</compilerVersion>
<source>1.7</source>
<target>1.7</target>  

This will use the jdk which you have defined in your JAVA_HOME environment property

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!