zoukankan      html  css  js  c++  java
  • Warning:java: 源值1.5已过时, 将在未来所有发行版中删除 Warning:java: 目标值1.5已过时, 将在未来所有发行版中删除 Warning:java: 要隐藏有关已过时选项的警告, 请使用 -Xlint:-options。

    Warning:java: 源值1.5已过时, 将在未来所有发行版中删除
    Warning:java: 目标值1.5已过时, 将在未来所有发行版中删除
    Warning:java: 要隐藏有关已过时选项的警告, 请使用 -Xlint:-options。

    我用的1.8

    修改maven setting.xml 中 profiles 添加以下代码

    <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>
    

    在maven中pom.setting添加

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

    idea设置成如下内容

    SDK ——————> 1.8
    level ----> 8 - Lambdas, type annotations etc.

  • 相关阅读:
    在简单地形上小车运动轨迹的数学表达(一)
    结尾
    第十四章 多线程编程
    第十五章 进程池与线程池
    第十章 信号
    第十一章 定时器
    第十三章 多进程编程
    第八章 高性能服务器程序框架
    KMP 专场 POJ2752
    约瑟夫问题 双链表实现
  • 原文地址:https://www.cnblogs.com/passer-byZe/p/12592564.html
Copyright © 2011-2022 走看看