ant warning: “‘includeantruntime’ was not set”

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://www.coderanch.com/t/503097/tools/warning-includeantruntime-was-not-set: That’s caused by a misfeature introduced in Ant 1.8. Just add an attribute of that name to the … Read more