distribution's beehive-imports.xml targets call <ant> task without dir attribute
--------------------------------------------------------------------------------
Key: BEEHIVE-946
URL: http://issues.apache.org/jira/browse/BEEHIVE-946
Project: Beehive
Type: Bug
Components: Build
Versions: V1
Reporter: Eddie O'Neil
The <deploy-*> targets in <dist-root>/beehive-imports.xml cause problems with
deeply nested Ant calls because they don't set the "dir" attribute correctly.
This messes up the ${basedir} property and can cause failures when doing
application builds.
The workaround is to change something like:
<ant antfile="${this.dir}/ant/beehive-runtime.xml"...>
to:
<ant dir="${this.dir}/ant" antfile="beehive-runtime.xml"...>
Is a pretty low risk fix if we want to get this in for 1.0.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira