Is there a way to pass a refid as a param in an antcall?
I'm trying to do something like the following, and want to
pass "filesList" id as the parameter "filesListArg"
to the CAB task.
<target name="makeJAR">
<jar jarfile="${InstallDir}/Applet.jar" >
<fileset dir="${ObjDir}" id="filesList" >
...
</fileset >
</jar >
<antcall target="makeCAB" >
<param name="filesListArg" ???? />
</antcall >
</target>
<target name="makeCAB" if="build.wantCAB">
<cab cabfile="${InstallDir}/Applet.cab"
basedir="./${ObjDir}"
verbose="no" >
<fileset refid="filesListArg" />
</cab >
</target>
I've tried various forms of <param> but no luck.
Thanks.
- Junit output file redirection Spencer A Marks
- RE: Junit output file redirection Royston McNeill
- Re: Junit output file redirection Spencer A Marks
- Re: Typical Usage Question Peter Donald
- Re: Typical Usage Question Spencer A Marks
- Re: Typical Usage Question Sean Kelly
- Re: Typical Usage Question Chris Winters
- Re: Typical Usage Question Dan Christopherson
- RE: Typical Usage Question Brett Ramdeen
- Re: Typical Usage Question Spencer A Marks
- RE: Typical Usage Question David Dean
- RE: Typical Usage Question KC Baltz
- RE: Typical Usage Question Tim Vernum
- Re: Typical Usage Question Chris Winters
