The development of Eclipse support for Java 8 is ongoing in a branch (http://wiki.eclipse.org/JDT_Core/Java8).
To try out the current Eclipse support for Java 8, I did the following:
BETA_JAVA8
of git://git.eclipse.org/gitroot/jdt/eclipse.jdt.core.git
.To use the new syntax available in Java 8, Eclipse said that I have to set the compliance level of my code to 1.8. To set the compliance level, I have to set the execution environment to JavaSE-1.8
. This execution environment was not available at Windows -> Preferences -> Java -> Installed JREs -> Execution Environments
.
How can I set the execution environment to JavaSE-1.8
?
The following summarizes some of my attempts to install the execution environment:
JavaSE-1.8
at the update site http://download.eclipse.org/eclipse/updates/4.2. But, the definition of the execution environment wasn't there.JavaSE-1.8
profile in the git repository of rt.equinox.framework, but, it wasn't there.Think you just have to change the 'settings' directly in the 'preference file' : org.eclipse.jdt.core.prefs
.
e.g. org.eclipse.jdt.core.compiler.compliance=1.8