IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除

Posted SnailDev

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除相关的知识,希望对你有一定的参考价值。

1. 修改Maven的Settings.xml文件添加如下内容

<profile>
  <id>jdk-1.8</id>
  <activation>
    <activeByDefault>true</activeByDefault>
    <jdk>1.8</jdk>
  </activation>
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  </properties>
</profile>

2. 在项目的pom.xml文件中添加:

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

3. 打开项目配置,设置Modules的Language Level为”8”

最后按”Ctrl+Alt+S”打开设置,搜索”Java Compiler”,将默认jdk和当前modual的jdk版本切换为1.8即可

以上是关于IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除的主要内容,如果未能解决你的问题,请参考以下文章

使用IDEA运行项目时提示:Warning:java: 源值1.5已过时, 将在未来所有发行版中删除

Idea 中提示:Warning:java: 源值1.5已过时, 将在未来所有发行版中删除

intellij idea配置

Maven项目提示:源值1.5已经过时,将在未来发行版中删除

源值 1.5 已过时

警告:[options] 源值 7 已过时,将在未来版本中删除