当前位置: 首页 > 知识库问答 >
问题:

IntelliJ:编译时出现致命错误:目标版本无效:1.8

汤枫
2023-03-14

我正在IntelliJ上运行一个Java Maven项目,我确保这个项目将由Java1.8编译。

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

而且

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.1</version>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
    </configuration>
</plugin>

当我运行该项目时,我得到一个错误:

无法执行目标org.apache.maven.plugins:maven-compiler-plugin:3.0:project feed_matcher上的compile(default-compile):编译错误:无效的目标版本:1.8->[帮助1]

你知道如何解决这个问题吗?

附注:我遵循了这个链接:idea:javac:source Release1.7需要target Release1.7,但我仍然无法解决这个问题。

共有1个答案

邹弘
2023-03-14

我假设您希望在版本8中拥有它,尽管有那么多评论告诉您设置为7。

 类似资料: