ant warning: “'includeantruntime' was not set”
问题 I receive the following warning: [javac] build.xml:9: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds What does this mean? 回答1: Ant Runtime Simply set includeantruntime="false" : <javac includeantruntime="false" ...>...</javac> If you have to use the javac -task multiple times you might want to consider using PreSetDef to define your own javac -task that always sets includeantruntime="false" . Additional Details From http:/