Try running in debug mode (-debug) and providing the stack trace.

-- 
Jeffrey E. Care ([EMAIL PROTECTED])
WebSphere Build SWAT Team Lead
WebSphere Build Tooling Lead (Project Mantis)
https://w3.opensource.ibm.com/projects/mantis


"Dick, Brian E." <[EMAIL PROTECTED]> wrote on 05/17/2005 12:30:58 PM:

> I'm getting an exception from the following build. The echoproperties
> task doesn't like the nested propertyset. What am I doing wrong?
> 
> <?xml version="1.0" ?>
> <project name="build" default="prop">
>    <property name="foo.1" value="1"/>
>    <property name="foo.2" value="2"/>
> 
>    <property name="bar.3" value="3"/>
>    <property name="bar.4" value="4"/>
> 
>    <propertyset id="foo.propset">
>       <propertyref prefix="foo"/>
>       <mapper type="glob" from="foo.*" to="foobar.*"/>
>    </propertyset>
> 
>    <propertyset id="bar.propset">
>       <propertyref prefix="bar"/>
>       <mapper type="glob" from="bar.*" to="foobar.*"/>
>    </propertyset>
> 
>    <propertyset id="foobar.propset">
>       <propertyset refid="foo.propset"/>
>       <propertyset refid="bar.propset"/>
>    </propertyset>
> 
>    <echoproperties>
>       <propertyset refid="foo.propset"/>
>    </echoproperties>
> 
>    <echoproperties>
>       <propertyset refid="bar.propset"/>
>    </echoproperties>
> 
>    <echoproperties>
>       <propertyset refid="foobar.propset"/>
>    </echoproperties>
> </project>

Reply via email to