Daniel Ezequiel Montivero created JCI-76:
--------------------------------------------
Summary: Support Java 8 compiler-eclipse
Key: JCI-76
URL: https://issues.apache.org/jira/browse/JCI-76
Project: Commons JCI
Issue Type: Improvement
Components: compiler eclipse
Affects Versions: 1.1
Reporter: Daniel Ezequiel Montivero
When using the Eclipse compiler, I am unable to use java 1.8 because is missing
on
*org.apache.commons.jci.compilers.EclipseJavaCompilerSettings*
private static Map<String, String> nativeVersions = new HashMap<String,
String>() { private static final long serialVersionUID = 1L;
{
put("1.1", CompilerOptions.VERSION_1_1);
put("1.2", CompilerOptions.VERSION_1_2);
put("1.3", CompilerOptions.VERSION_1_3);
put("1.4", CompilerOptions.VERSION_1_4);
put("1.5", CompilerOptions.VERSION_1_5);
put("1.6", CompilerOptions.VERSION_1_6);
put("1.7", CompilerOptions.VERSION_1_7); //MISSING HERE THE 1.8
KEY-CONSTANT }};
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)