summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-17 19:22:38 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-17 19:22:38 +0000
commit51ff4e0cf9df720412020b4399a0ef682111b842 (patch)
treece08709aed441f7d28e63d11f89052db35c26373
parent32c261b57dcbb35a97f1a9f7ba41bee1fdc3b631 (diff)
Add build.xml file to demos directory
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@998270 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/demos/build.xml45
1 files changed, 45 insertions, 0 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/demos/build.xml b/sca-java-1.x/branches/sca-java-1.6.1/demos/build.xml
new file mode 100644
index 0000000000..974476dfb1
--- /dev/null
+++ b/sca-java-1.x/branches/sca-java-1.6.1/demos/build.xml
@@ -0,0 +1,45 @@
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+
+<project name="tuscany-demos" default="compile">
+
+ <target name="compile">
+ <antcall target="allsubdirs">
+ <param name="target" value="compile"/>
+ </antcall>
+ </target>
+
+ <target name="clean">
+ <antcall target="allsubdirs">
+ <param name="target" value="clean"/>
+ </antcall>
+ </target>
+
+ <target name="allsubdirs">
+ <ant dir="alert-aggregator-webapp" target="${target}"/>
+ <ant dir="bigbank" target="${target}"/>
+ <ant dir="bigbank-account" target="${target}"/>
+ <ant dir="bigbank-calculator" target="${target}"/>
+ <ant dir="bigbank-stockquote" target="${target}"/>
+ <ant dir="mortgage-creditcheck" target="${target}"/>
+ <ant dir="mortgage-loanapproval" target="${target}"/>
+ <ant dir="xml-bigbank" target="${target}"/>
+ </target>
+
+</project>