warning: 'includeantruntime' was not set

[javac] D:\workspace3.7_gs\antTest\build\build5.xml:22: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds

includeantruntime:Ant是否把它自己的 runtime包含进对 javac任务可见的classpath中

值:on或false

javac 加入includeantruntime="false" 就好了,

<javac srcdir="${basedir}/src" destdir="${classes}" includeantruntime="false"/>

 

这个警告是从 Ant1.8 才开始有的,我现在用的 Eclipse 是 3.7,内置了 Ant1.8.2

历史上,Ant 总会把它自己的 runtime包含进对 javac 任务可见的 classpath中。因此,任何与Ant有关的库都会自动进入你的构建类路径,不管你是否需要它们。这对大部分人来说可能是没必要的,因此,新的Ant版本提供了这个选项。新版本不提供默认值是为了保证早期构建文件的可移植性,即在不同Ant版本下,构建文件都能保持一致的行为。

你可能感兴趣的:(ant)