summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/getting-started/helloworld-ant/build.xml
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-04-11 10:20:16 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-04-11 10:20:16 +0000
commite83ed0e0dbd38e4fde383ca2897fb746d542cfc2 (patch)
treec6e0905162a45fba8095ea974e351247efd154b3 /sca-java-2.x/trunk/samples/getting-started/helloworld-ant/build.xml
parenta6c13e185445b76346028325db1616c9f9687d19 (diff)
Add a version of the helloworld sample that has an Ant build
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1091009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/samples/getting-started/helloworld-ant/build.xml')
-rw-r--r--sca-java-2.x/trunk/samples/getting-started/helloworld-ant/build.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-ant/build.xml b/sca-java-2.x/trunk/samples/getting-started/helloworld-ant/build.xml
new file mode 100644
index 0000000000..c9ec57da8c
--- /dev/null
+++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-ant/build.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above. -->
+<!-- ====================================================================== -->
+
+<project name="helloworld" default="package" basedir=".">
+
+ <!-- ====================================================================== -->
+ <!-- Import maven-build.xml into the current project -->
+ <!-- ====================================================================== -->
+
+ <import file="maven-build.xml"/>
+
+ <!-- ====================================================================== -->
+ <!-- Help target -->
+ <!-- ====================================================================== -->
+
+ <target name="help">
+ <echo message="Please run: $ant -projecthelp"/>
+ </target>
+
+</project>