如何在Eclipse Oxygen中设置java 10?

时间:2018-03-22 19:22:06

标签: java eclipse java-10

我不确定最新版的eclipse即Oxygen是否支持java 10。我从我的mac机器上的首选项配置了Java 10的JRE。

enter image description here

另外,我尝试将maven编译器插件添加到我的pom.xml中: -

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>10</source>
                <target>10</target>
                <compilerVersion>10</compilerVersion>
                <fork>true</fork>
                <executable>/Library/Java/JavaVirtualMachines/jdk-10.jdk/Contents/Home</executable>
            </configuration>
        </plugin>

我在设置运行配置后也尝试了如下: -

enter image description here

任何人都知道如何让它适用于java-10。

我尝试在下面运行代码: -

public class App {
    public static void main(String[] args) {
        var list = new ArrayList<String>();
        System.out.println("Hello World!");

    }
}

更新: - 我在评论中应用了建议的补丁,但仍然失败。

屏幕截图如下: -

enter image description here

另外,我按照this帖子进行编译。因此,编译实际上是从eclipse(maven install)开始工作的,但是当我尝试运行应用程序时它仍然失败。

1 个答案:

答案 0 :(得分:7)

所以,我请求eclipse查看它,看看为什么补丁不起作用。

Here是我得到的答案

以下是Eclipse社区的确切评论: -

  

注意:此功能修补程序已禁用。它原本打算成为   安装在4.7.3版本之上。现在,可以使用Java 10支持   通过4.7.3a版本下载页面。最早的构建是   支持此功能可以从

下载

所以从here下载支持版本。使用java 10 here查看Eclipse的新功能。

希望它有所帮助!

编辑:补丁支持是暂时的,已被删除。所以,现在你需要安装最新的eclipse版本,并且它支持java 10