解决idea maven工程的module的Language Level总是自动变到5

解决idea maven工程的module的Language Level总是自动变到5:

问题如下所示:

解决idea maven工程的module的Language Level总是自动变到5_第1张图片

解决:

在pom.xml里面加入如下:

 <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>

解决idea maven工程的module的Language Level总是自动变到5_第2张图片

你可能感兴趣的:(idea,科技,ide)