错误:(185,13)Java:-source 1.5不支持try-with-resources(使用-source 7或更高版本来启用try-with-resources)

时间:2018-12-14 06:01:12

标签: java maven

在Java SDK 1.8中编译的intelij maven中,但显示自动更改为Java SDK 1.5并显示此错误

1 个答案:

答案 0 :(得分:5)

在您的pom.xml文件上应该有此文件,它指定了maven编译器为1.8

<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.0</version>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
    </configuration>
</plugin>