You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Stefan Bodewig <bo...@apache.org> on 2003/05/14 17:36:54 UTC

Re: How do I call another ant build file and pass parameter to it fro m a script task

On Wed, 14 May 2003, Manoj Sadangi <ms...@manh.com> wrote:

> this is complaining that addProperty is not a function.

There is no method addProperty in the Property class that would take
two arguments, in fact ther is no method of that name at all.

Maybe what you really mean is

    prop.setName("sbean");
    prop.setValue(sbean);

instead of 

>              prop.addProperty("sbean",sbean);

???

Stefan