欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IDEA:Maven—Warning:java: 目标值1.5已过时, 将在未来所有发行版中删除

程序员文章站 2022-04-17 21:38:55
...

在Maven的pom.xml中配置JDK编译版本

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