idea maven工程中的Language Level总是自动变到5

问题如下图所示

idea maven工程中的Language Level总是自动变到5

idea maven工程中的Language Level总是自动变到5

在project中设置JDK为1.8,Language Level为8,但是新建的module总是为5,且修改pom后Language Level也会自动变为5.

解决方案如下

在pom中指定版本

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.5.1</version>
                <!-- 下面指定为自己需要的版本 -->
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
上一篇:VSCode无法跳转到定义


下一篇:重读经典《The C Programming Language》