aboutsummaryrefslogtreecommitdiff
path: root/samples/XML/module.ant
blob: 8f3a10dbd0206a7bf8ff415507c50d2c9c77eb32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0"?>
<project name="org.apache.easyant#standard-java-app" xmlns:ea="antlib:org.apache.easyant">
    <description>
        This easyant module.ant sample file is optionnal and designed to customize your build with your own specific target.
    </description>

    <target name="an-additionnal-target">
       <echo>my awesome additionnal target</echo>
    </target>

    <target name="a-specific-pre-compile-step" extensionOf="abstract-compile:compile-ready">
       <echo>i would love easyant i could easily plug my own specific pre compile step</echo>
    </target>                
                
</project>