DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42715>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=42715 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |DUPLICATE ------- Additional Comments From [EMAIL PROTECTED] 2007-06-21 13:09 ------- The build file: http://svn.apache.org/repos/asf/beehive/trunk/ant/beehive-runtime.xml contains the <ant inheritAll="false"/> task which will trigger this the 42263 bug: <target name="deploy.beehive.webapp.runtime" description="Deploy the Beehive webapp runtime given a webapp root as -Dwebapp.dir"> <ant target="deploy.netui" dir="${beehive.home}/netui/" inheritAll="false"> <property name="webapp.dir" location="${webapp.dir}"/> </ant> </target> <target name="deploy.controls.webapp.runtime" description="Deploy the Beehive controls runtime given a webapp root as -Dwebapp.dir"> <ant target="deploy.controls.runtime" dir="${beehive.home}/controls/" inheritAll="false"> <property name="webapp.dir" location="${webapp.dir}"/> </ant> </target> The project should work with ant 1.7.1(svn), in the mean-time you can use the work-around of passing the ant.version to the nested ant project: <ant target=....> <property name="ant.version" value="${ant.version}"/> ... </ant> Re-Marking as duplicate *** This bug has been marked as a duplicate of 42263 *** -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
