The build.xml you're calling has the following:
  <property file="${user.home}/build.properties" /> 
  <property file="${user.home}/.build.properties" /> 
  <property file="build/build.properties" /> 

But note that they have 'basedir=".."', which is why the read in
"build/build.properties" instead of just "build.properties". But there
setting of basedir isn't going to happen, since you've effectively set
basedir to ${jetspeed}/build via your <ant>'s 'dir' attribute. I think
your choices are:
  - add another <property> task to read in just "build.properties"
  - copy build.properies to your ${user.home}

Diane

=====
([EMAIL PROTECTED])



__________________________________________________
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to