summaryrefslogtreecommitdiffstats
path: root/cpp/sca/samples/RestCalculator
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/RestCalculator
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/RestCalculator')
-rw-r--r--cpp/sca/samples/RestCalculator/build.xml117
1 files changed, 0 insertions, 117 deletions
diff --git a/cpp/sca/samples/RestCalculator/build.xml b/cpp/sca/samples/RestCalculator/build.xml
deleted file mode 100644
index 9a378b7695..0000000000
--- a/cpp/sca/samples/RestCalculator/build.xml
+++ /dev/null
@@ -1,117 +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_RestCalculator" 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/RestCalculator"/>
- <property name="sample.calculator.dir" location="${this.dir}/sample.calculator"/>
- <property name="sample.calculator.client.dir" location="${this.dir}/sample.calculator.restclient"/>
- <property name="sample.httpserver.dir" location="${this.dir}/httpserver"/>
-
- <property name="RestCalculator.install.dir"
- location="${tuscanySCA.install.dir}/samples/RestCalculator"/>
- <property name="sample.calculator.install.dir"
- location="${RestCalculator.install.dir}/sample.calculator"/>
- <property name="sample.calculator.client.install.dir"
- location="${RestCalculator.install.dir}/sample.calculator.restclient"/>
- <property name="sample.httpserver.install.dir"
- location="${RestCalculator.install.dir}/httpserver"/>
- </target>
-
- <!--
- Public targets
- -->
- <target name="all"
- depends="init"
- description="install the TuscanyScaNative RestCalculator sample (no build necessary)">
- <antcall target="install"/>
- </target>
-
- <!-- This sample does not require building, just installation -->
-
- <target name="install"
- depends="init"
- description="Install the TuscanyScaNative RestCalculator sample">
- <cpp-install-files
- files="*.composite"
- srcdir="${this.dir}"
- destdir="${RestCalculator.install.dir}"/>
-
- <!-- install sample.calculatur files -->
- <cpp-install-files
- files="*.rb"
- srcdir="${sample.calculator.dir}"
- destdir="${sample.calculator.install.dir}"/>
- <cpp-install-files
- files="*.composite"
- srcdir="${sample.calculator.dir}"
- destdir="${sample.calculator.install.dir}"/>
-
- <!-- install sample.calculatur.restclient files -->
- <cpp-install-file
- srcfile="CalculatorRestClient.rb"
- srcdir="${sample.calculator.client.dir}"
- destdir="${sample.calculator.client.install.dir}"/>
- <cpp-install-file
- srcfile="sample.calculator.restclient.composite"
- srcdir="${sample.calculator.client.dir}"
- destdir="${sample.calculator.client.install.dir}"/>
- <cpp-install-file
- srcfile="runrestclient${script.ext}"
- srcdir="${sample.calculator.client.dir}"
- destdir="${sample.calculator.client.install.dir}"/>
-
- <!-- install httpserver files -->
- <cpp-install-files
- files="*${script.ext}"
- srcdir="${sample.httpserver.dir}"
- destdir="${sample.httpserver.install.dir}"
- executable="true"/>
- <cpp-install-files
- files="*.types"
- srcdir="${sample.httpserver.dir}/conf"
- destdir="${sample.httpserver.install.dir}/conf"/>
- <cpp-install-files
- files="*.conf"
- srcdir="${sample.httpserver.dir}/conf"
- destdir="${sample.httpserver.install.dir}/conf"/>
- <cpp-install-files
- files="*.html"
- srcdir="${sample.httpserver.dir}/htdocs"
- destdir="${sample.httpserver.install.dir}/htdocs"/>
- </target>
-
- <target name="clean"
- depends="init"
- description="Clean the TuscanyScaNative RestCalculator sample">
- <delete dir="${RestCalculator.install.dir}" quiet="true"/>
- </target>
-
-</project>