Tagged Questions
The macrodef tag has no wiki summary.
3
votes
1answer
51 views
ant macrodefs and element naming
I have a macrodef with a an element called "libs"
<macrodef name="deploy-libs">
<element name="libs"/>
<sequential>
<copy ...
3
votes
1answer
714 views
How to invoke a macrodef from within another file
I wrote a small macrodef in separate file:
macrodefs.xml
<macrodef name="do-cool-stuff">
<attribute name="message"/>
<sequential>
<echo message="@{message}" />
...
3
votes
1answer
164 views
How to distribute each element of a list to argument of a task Ant?
How to take the values of argument for a defined task into a list (of values) without to have to rewrite the task for each value of argument ?
Example:
I want to avoid to have to rewrite three time ...
2
votes
1answer
48 views
Macrodef and “local properties”
I am trying to move a file (specified by a pattern) to a given location in an Ant macrodef:
<macrodef name="extract">
<attribute name="package"/>
<sequential>
...
2
votes
1answer
301 views
Ant macrodef compilation task
I have a compiler (and language) I am building that is normally invoked thus:
java -jar nc.jar \
-p some/referenced/package.nc \
-p framework.nc \
source1.ns source2.ns sourceN.ns \
...
2
votes
2answers
1k views
Ant: how to write optional nested elements
Say that I need to do something like:
<copy todir="${DEPLOYMENT_DIR}" overwrite="true">
<fileset dir="dir1" />
<fileset dir="dir2" />
<fileset dir="dir3" />
...
2
votes
1answer
378 views
Ant macrodef: Is there a way to get the contents of an element parameter?
I'm trying to debug a macrodef in Ant. I cannot seem to find a way to display the contents of a parameter sent as an element.
<project name='debug.macrodef'>
<macrodef ...
1
vote
1answer
177 views
How do I call an Ant macro from inside another macrodef?
I have a build.xml, from here I call a macro:
<import file="macro_file.xml" />
<ant-macro message="Hello, World!" />
and my macro_file.xml file looks like this:
<macrodef ...
1
vote
1answer
86 views
How to use attribute URI in ANT MacroDef task?
I read doc page on http://ant.apache.org/manual/Tasks/macrodef.html, but I can understand.
There are no examples.
How to use attribute URI in ANT MacroDef task?
0
votes
2answers
120 views
Incorporating 7z in macrodef in ANT
I have been using a macro definition to copy a set of files to different locations and FTP servers. But copying seems quite slow so I want to compress the bundle using 7z and copy all into FTP as one ...
0
votes
1answer
126 views
Nant Build script undifined Issue
I have the following code in a nant build script:
<project name="fgs">
<property name="build.dir" value="build"/>
<property name="build.bin.dir" value="${build.dir}/bin"/>
...
0
votes
1answer
247 views
Making an ANT Macro more reusable
I have a simple macro (simplified version below). At the moment it assumes that there will be a single value for a single argument, however there might be multiple values for that argument. How can I ...
0
votes
1answer
984 views
ANT. Override properties. Optional Execution in Single Target
I'm going to post a question that I've seen variants of elsewhere, but where I've not quite seen the answer I came up with. I'll subsequently post my answer.
In order to modularize my build script ...
0
votes
1answer
129 views
How to replace three calls to a macrodef by only one?
How to replace three calls to "myMacro":
<myMacro value="value 1"/>
<myMacro value="value 2"/>
<myMacro value="value 3"/>
By only one call who would use a list of three elements: ...