IDEA 使用Maven构建项目提示:Error:java: 错误: 不支持发行版本 5

IDEA 使用Maven构建项目提示:Error:java: 错误: 不支持发行版本 5

在IDEA使用Maven构建项目提示总提示 Error:java: 错误: 不支持发行版本 5,是因为Intellij IDEA用Maven来构建项目,若pom.xml没有指定版本,总是默认Language level 5 与 Java Compiler 1.5。

解决办法:

方法一(手动修改)

  • File -> Settings -> Java Compiler -> Target bytecode version = 8

  • File -> Project Structure -> Language level : 8 - Lambdas,type annotations etc
    IDEA 使用Maven构建项目提示:Error:java: 错误: 不支持发行版本 5_第1张图片
    IDEA 使用Maven构建项目提示:Error:java: 错误: 不支持发行版本 5_第2张图片

方法二(修改pom.xml):

  • 方式一:添加properties节点 (重启项目后生效)

    <properties>
        <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
        
        <maven.compiler.source>1.8maven.compiler.source>
        
        <maven.compiler.target>1.8maven.compiler.target>
    properties>
    
  • 方式二:pom.xml中添加build节点

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-compiler-pluginartifactId>
                <configuration>
                    <source>1.8source>
                    <target>1.8target>
                configuration>
            plugin>
        plugins>
    build>
    

你可能感兴趣的:(问题解决)