maven使用java8

使用Intellij IDEA打开maven项目时常常会出现jdk版本过低的问题,默认IDEA设置的jdk版本为jdk1.5,如果要默认使用java8只需要在pom.xml文件中添加如下的配置:

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

设置java版本

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.6.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    原文作者:sjhuangx
    原文地址: https://blog.csdn.net/sjhuangx/article/details/79968644
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞