> From: Amit Kulkarni [mailto:proudlyindian@yahoo.com]
>
> Hi,
> im trying to decompile classes in multiple jars using jode decompiler
> which itself uses java to
> decompile files.
> it takes jar as an argument and i want to give multiple jars as the
> argument
>
> my task is
>
> <java classname="jode.decompiler.Main">
> <arg value="--dest"/>
> <arg value="test-classes"/>
> <arg value="abc.jar"/> ######### i want to give multiple jars here
> </java>
>
> can anyone provide a clue to this, filesets dont work here
I'll try ;-)
Define your <fileset> outside, then <pathconvert> it to a string stuffed in
a property, then use <arg line="${all my jars}" />. Or use <apply>, forking
a Java VM manually, and parallel="true". --DD
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|