aboutsummaryrefslogtreecommitdiff
path: root/samples/xml/module.ant
diff options
context:
space:
mode:
authorJean-Louis Boudart <jeanlouis.boudart@gmail.com>2012-07-21 14:21:16 +0200
committerJean-Louis Boudart <jeanlouis.boudart@gmail.com>2012-07-21 14:21:16 +0200
commit1027047bc7c28a0c0b2dd03aee6d5daa1864e7cd (patch)
tree8fc124cc3fdee78694b5032fde81754471a1cb76 /samples/xml/module.ant
parent0b983546382b25546e15acaf5e30bde7fd207f84 (diff)
Add easyant sample files
Diffstat (limited to 'samples/xml/module.ant')
-rw-r--r--samples/xml/module.ant15
1 files changed, 15 insertions, 0 deletions
diff --git a/samples/xml/module.ant b/samples/xml/module.ant
new file mode 100644
index 0000000..8f3a10d
--- /dev/null
+++ b/samples/xml/module.ant
@@ -0,0 +1,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>