问答详情
源自:4-9 Maven 构建项目

maven 编译这个项目是 报版本过低错误

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile) on project order: Compilation failure

[ERROR] Failure executing javac, but could not parse the error:

[ERROR] 错误: 不再支持源选项 1.5。请使用 1.6 或更高版本。

[ERROR] 错误: 不再支持目标选项 1.5。请使用 1.6 或更高版本。


用的1.8。。。

提问者:healsh 2018-09-06 17:42

个回答

  • healsh
    2018-09-06 17:51:25

    pom.xml文件中增加jdk的设置

    <properties>内增加

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

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

    尝试几次后成了。。刚开始直接引用1.8的怎么都不成。。