summaryrefslogtreecommitdiffstats
path: root/cpp/sca/samples/RubyBigBank
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2009-09-14 06:12:36 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2009-09-14 06:12:36 +0000
commit7c9f8b8af3dc7e192cea262e7a8e23c519fd0a50 (patch)
tree1bb1f5b917308dcc130044989861158ab87d6ef5 /cpp/sca/samples/RubyBigBank
parent0eb1658ee76b0a849d12728744f7fa9d0b43a203 (diff)
Cleaned up old out of sync build artifacts.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@814487 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/sca/samples/RubyBigBank')
-rw-r--r--cpp/sca/samples/RubyBigBank/build.xml126
1 files changed, 0 insertions, 126 deletions
diff --git a/cpp/sca/samples/RubyBigBank/build.xml b/cpp/sca/samples/RubyBigBank/build.xml
deleted file mode 100644
index 886c00e019..0000000000
--- a/cpp/sca/samples/RubyBigBank/build.xml
+++ /dev/null
@@ -1,126 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- 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="TuscanyScaNative_Sample_RubyBigBank" default="all" basedir="../..">
-
- <import file="${basedir}/antscripts/system.xml"/>
- <import file="${basedir}/antscripts/compile-targets.xml"/>
-
- <!--
- Notice that the basedir for this project is set to the TuscanySCA root dir
- This makes path setting in system.xml much simpler, but we'll just have to
- set a property here to this directory.
- -->
-
- <target name="init">
- <tstamp/>
- <property name="this.dir" location="${basedir}/samples/RubyBigBank"/>
- <property name="bigbank.account.dir" location="${this.dir}/bigbank.account"/>
- <property name="bigbank.account.client.dir" location="${this.dir}/bigbank.client"/>
- <property name="bigbank.account.wsclient.dir" location="${this.dir}/bigbank.wsclient"/>
-
- <property name="RubyBigBank.install.dir"
- location="${tuscanySCA.install.dir}/samples/RubyBigBank"/>
- <property name="bigbank.account.install.dir"
- location="${RubyBigBank.install.dir}/bigbank.account"/>
- <property name="bigbank.account.client.install.dir"
- location="${RubyBigBank.install.dir}/bigbank.client"/>
- <property name="bigbank.account.wsclient.install.dir"
- location="${RubyBigBank.install.dir}/bigbank.wsclient"/>
- </target>
-
- <!--
- Public targets
- -->
- <target name="all"
- depends="init"
- description="install the TuscanyScaNative RubyBigBank sample">
- <antcall target="install"/>
- </target>
-
- <target name="install"
- depends="init"
- description="Install the TuscanyScaNative RubyBigBank sample">
- <cpp-install-files
- files="*.composite"
- srcdir="${this.dir}"
- destdir="${RubyBigBank.install.dir}"/>
-
- <!-- install bigbank.account.files -->
- <cpp-install-files
- files="*.rb"
- srcdir="${bigbank.account.dir}"
- destdir="${bigbank.account.install.dir}"/>
- <cpp-install-files
- files="*.composite"
- srcdir="${bigbank.account.dir}"
- destdir="${bigbank.account.install.dir}"/>
- <cpp-install-files
- files="*.wsdl"
- srcdir="${bigbank.account.dir}"
- destdir="${bigbank.account.install.dir}"/>
- <cpp-install-files
- files="*.xsd"
- srcdir="${bigbank.account.dir}"
- destdir="${bigbank.account.install.dir}"/>
- <cpp-install-files
- files="*${script.ext}"
- srcdir="${bigbank.account.dir}"
- destdir="${bigbank.account.install.dir}"
- executable="true"/>
-
- <!-- install bigbank.account.client files -->
- <cpp-install-files
- files="*.rb"
- srcdir="${bigbank.account.client.dir}"
- destdir="${bigbank.account.client.install.dir}"/>
- <cpp-install-files
- files="*${script.ext}"
- srcdir="${bigbank.account.client.dir}"
- destdir="${bigbank.account.client.install.dir}"
- executable="true"/>
-
- <!-- install bigbank.account.wsclient files -->
- <cpp-install-files
- files="*.rb"
- srcdir="${bigbank.account.wsclient.dir}"
- destdir="${bigbank.account.wsclient.install.dir}"/>
- <cpp-install-files
- files="*${script.ext}"
- srcdir="${bigbank.account.wsclient.dir}"
- destdir="${bigbank.account.wsclient.install.dir}"
- executable="true"/>
- <cpp-install-files
- files="*.composite"
- srcdir="${bigbank.account.wsclient.dir}"
- destdir="${bigbank.account.wsclient.install.dir}"/>
- <cpp-install-files
- files="*.wsdl"
- srcdir="${bigbank.account.wsclient.dir}"
- destdir="${bigbank.account.wsclient.install.dir}"/>
-
- </target>
-
- <target name="clean"
- depends="init"
- description="Clean the TuscanyScaNative RubyBigBank sample">
- <delete dir="${RubyBigBank.install.dir}" quiet="true"/>
- </target>
-
-</project>