up vote 1 down vote favorite
1
share [g+] share [fb]

I have a project with multiple modules, each in its own directory. Each module has its own ant build file (build.xml)

In the root directory I've set up a general build file that calls the build file of each module in the right order.

<?xml version="1.0"?>
<project name="bridgedb" default="all" basedir=".">
  <target name="all">
    <ant dir="corelib"/>
    <ant dir="tools"/>
    <ant dir="makeGdb"/>
    <ant dir="cytoscape-plugin"/>
  </target>
</project>

Now each module also has a "clean" target, so I add these lines:

 <target name="clean">
    <ant dir="corelib" target="clean"/>
    <ant dir="tools" target="clean"/>
    <ant dir="makeGdb" target="clean"/>
    <ant dir="cytoscape-plugin" target="clean"/>
  </target>

And there are more targets like that. Is there a way to rewrite the build file to avoid this duplication? I've looked for a built-in property that contains the active target, but I couldn't find it.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Why not use antcall to call a target that references all your subdirs, and parameterise the target to be called. e.g.

 <antcall target="doStuffToSubdirs">
    <!-- let's clean -->
    <param name="param1" value="clean"/>
  </antcall>

and then:

<target name="doStuffToSubdirs">
   <ant dir="corelib" target="${param1}"/>
   <ant dir="tools" target="${param1}"/>
    ...etc
</target>

so this allows you to parameterise the calls to your subdirs. If you add a new subdir, you only have to add that subdir to the 'doStuffToSubdirs' target (I would rename that as well!)

link|improve this answer
Yup this works, thanks. – amarillion May 4 '09 at 11:19
although it should be <antcall target="..." and not <antcall name="..." – amarillion May 4 '09 at 11:20
I'll correct that now. Thx for the heads up (I confess I didn't test that :-) – Brian Agnew May 4 '09 at 11:26
feedback

Put one clean target in your commonbuild.xml and in the child files just import your parent build.xml

<import file="${parent.dir}/commonbuild.xml" />

Now you will be able to call the clean target in your child builds. You can also override this target by creating a clean target in any of your child builds.

link|improve this answer
If I understand this correctly, that assumes that the "clean" target does exactly the same thing in each subdirectory. But that is not the case, especially not for other targets that I may wish to call in the same way. – amarillion May 4 '09 at 11:02
You are correct i misunderstood your question. – Nuno Furtado May 4 '09 at 11:11
np, this is a useful trick too that I may use some other day :) – amarillion May 4 '09 at 11:21
http://www.exubero.com/ant/dependencies.html <-- I just implemented this in my build environment. Makes everything very clean and simple. I have one main build-common.xml and if I need to override the main, I just do it in the build.xml in the submodules. – Tazzy531 Jul 29 '09 at 12:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.