My ant script gives this warning msg when it runs ---
warning 'includeantruntime' was not set , defaulting to build.sysclasspath=last; set to false for repeatable builds.
Can someone tell me what it means and how to fix ?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35243
7
posted
2
That's caused by a misfeature introduced in Ant 1.8. Just add an attribute of that name to the javac task, set it to false, and forget it ever happened.
Are there any ways to configure this without cluttering each build.xml? How/where?
Karsten
OCJP JavaSE 6 (86%)
Peter Fat
Greenhorn
Joined: Oct 18, 2010
Posts: 24
posted
0
Ulf Dittmer wrote:That's caused by a misfeature introduced in Ant 1.8. Just add an attribute of that name to the javac task, set it to false, and forget it ever happened.
gnana sankaran, Your post was moved to a new topic. Your question requires NetBeans expertice to answer, so I am moving it to the IDE forum.
gain knowledge
Greenhorn
Joined: Feb 02, 2012
Posts: 1
posted
0
Ulf Dittmer wrote:That's caused by a misfeature introduced in Ant 1.8. Just add an attribute of that name to the javac task, set it to false, and forget it ever happened.