I dont know any easy way.
Simplest thing would be writing that kind in Java.
And if you dont want to download that jar from your buildfile you could the jar 
creation inline:
- generate the code (<echo>)
- compile (<javac>)
- archive that (<jar>)
- include that (<taskdef>)

Via <script> you have access to the Ant API so it could be possible to do that 
this way.
But I think, that's very hard ...

Jan

> -----Ursprüngliche Nachricht-----
> Von: Al Le [mailto:al...@gmx.de]
> Gesendet: Samstag, 3. Juni 2017 23:21
> An: Ant Users List
> Betreff: How to define a task with nested elements in Ant?
> 
> Hello,
> 
> is it possible to define a task in Ant which would have some nested
> elements? Sort of like how it's done with the macrodef task but with a
> bit structure.
> 
> For example, I'd like to define a task which would be used as follows:
> 
> <mytask>
>      <paramA value="AAA1"/>
>      <paramA value="AAA2"/>
>      <paramB value="BBB"/>
> </mytask>
> 
> 
> This should internally translate to
> 
> <java classname="some.Class">
>      <arg value="-parameterA"/> <arg value="AAA1"/>
>      <arg value="-parameterA"/> <arg value="AAA2"/>
>      <arg value="-parameterB"/> <arg value="BBB"/> </java>
> 
> 
> I.e. a <paramA> in the custom task should result in two args for the
> java task.
> 
> I know I could write a custom task in Java using an instance of the
> java task in the implementation. But I'd like to know whether (and how)
> it's possible to do this directly in Ant (possibly with javascript),
> i.e.
> without having to have some external JARs.
> 
> Thank you for any hints!
> 
> AL
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional
> commands, e-mail: user-h...@ant.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to