Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: meinc
  • Order by date
  1. meinc

    Problem: how to call an ant macrodef from inside a groovy script

    had a nice weekend, found the solution myself it works as follows: <macrodef name="x" > <attribute name="msg"/> <sequential> <echo message="@{msg}"/> </sequential> </macrodef> <target name="script" > <script language="groovy"><![CDATA[ t = project.createTask("x") t.setDynamicAttribute("msg"...
  2. meinc

    Problem: how to call an ant macrodef from inside a groovy script

    I need to use an ant macrodef inside of an ant script, simplified I want to do something as follows. Is this possible? Where can I found more about the Ant+Groovy Syntax, or better what can be used from ant inside the script element. <macrodef name="mymacro"> <attribute name="myparam"/>...

Part and Inventory Search

Back
Top