idea java 1.5 过时
Posted 穷开心y
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea java 1.5 过时相关的知识,希望对你有一定的参考价值。
解决方案:
1.修改maven的setting.xml文件,添加以下内容,此设置为jdk1.8
<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.在maven项目的pom.xml文件中添加,jdk1.8,尽量保持jdk版本一致
<properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties>
3. 修改项目设置
4. 修改idea默认设置
以上是关于idea java 1.5 过时的主要内容,如果未能解决你的问题,请参考以下文章
Idea 中提示:Warning:java: 源值1.5已过时, 将在未来所有发行版中删除
解决idea中maven默认jdk为1.5的问题 : IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除