美文网首页
IDEA 警告过时 处理方法(Maven)

IDEA 警告过时 处理方法(Maven)

作者: 恭子_张 | 来源:发表于2018-05-10 16:52 被阅读43次

    每次运行报出如下结果:

    Warning:java: 要隐藏有关已过时选项的警告, 请使用 -Xlint:-options。

    解决方法:在pom.xml中添加如下信息

    <properties>

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

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

    </properties>

    相关文章

      网友评论

          本文标题:IDEA 警告过时 处理方法(Maven)

          本文链接:https://www.haomeiwen.com/subject/byctdftx.html