zoukankan      html  css  js  c++  java
  • 解决ant编译中出现“includeantruntime was not set”警告的问题

    http://hi.baidu.com/xiboliya/item/599753c34b7a517ccfd4f847

    执行ant编译时,总会出现如下的警告:
    [javac] D:\SnowPad\build.xml:26: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    虽然不影响编译,但还是解决才安心。其实解决方法也很简单,只需要根据提示在javac任务中添加includeAntRuntime="false"属性即可。例如:
    修改前:
        <javac srcdir="${srcDir}" destdir="${binDir}" />
    修改后:
        <javac srcdir="${srcDir}" destdir="${binDir}" includeAntRuntime="false" />
    注:
    1.对于includeAntRuntime属性,官方的解释如下:
        Whether to include the Ant run-time libraries in the classpath; defaults to yes, unless build.sysclasspath is set. It is usually best to set this to false so the script's behavior is not sensitive to the environment in which it is run.
    2.此警告在较早的ant版本中可能不会出现,当前用的版本是:Apache Ant(TM) version 1.8.2 compiled on December 20 2010。所以此问题跟ant版本有关。

    I'm falling off the sky all alone.The courage inside is gonna break the fall. Nothing can dim my light within. I am That I am 程序 = 数据结构 + 算法
  • 相关阅读:
    精准医疗
    生物信息学的研究过程
    蛋白质结构预测
    CP
    基因组大小控制因素
    RNA组研究困难
    输入input文本框的 U+202D和U+202C是什么
    ruby-get-url-query-params
    golang send post request
    nginx location配置
  • 原文地址:https://www.cnblogs.com/IamThat/p/2949867.html
Copyright © 2011-2022 走看看