aboutsummaryrefslogtreecommitdiff
path: root/samples/XML/module.ant
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2012-07-23 15:52:49 -0500
committerJoshua Peek <josh@joshpeek.com>2012-07-23 15:52:49 -0500
commit7b6caa0f6c7603aabb5e6ed657e24aaddbeafc78 (patch)
treeec0522eae75bb04ae73d28ae3f599682a2bfdaeb /samples/XML/module.ant
parent314f0e485227915931db361be14d308a210bedea (diff)
Rename samples subdirectories
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>