summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-1.6.2/samples/build.xml
blob: dfb23f7d75f8cb45b87ad347f691175f02f2384d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!--
 * 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-samples" 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="binding-echo-extension" target="${target}"/>
        <ant dir="binding-echo" target="${target}"/>
        <ant dir="binding-notification-broker" target="${target}"/>
        <ant dir="binding-notification-consumer" target="${target}"/>
        <ant dir="binding-notification-producer" target="${target}"/>
        <ant dir="calculator" target="${target}"/>
        <ant dir="calculator-corba-reference" target="${target}"/>
        <ant dir="calculator-corba-service" target="${target}"/>
        <ant dir="calculator-distributed" target="${target}"/>
        <ant dir="calculator-implementation-policies" target="${target}"/>
        <ant dir="calculator-rmi-reference" target="${target}"/>
        <ant dir="calculator-rmi-service" target="${target}"/>
        <ant dir="calculator-script" target="${target}"/>
        <ant dir="calculator-webapp" target="${target}"/>
        <ant dir="calculator-ws-webapp" target="${target}"/>
        <ant dir="callback-ws-client" target="${target}"/>
        <ant dir="callback-ws-service" target="${target}"/>
        <ant dir="callbacks-jms" target="${target}"/>
        <ant dir="chat-webapp" target="${target}"/>
        <ant dir="databinding-echo" target="${target}"/>
        <ant dir="domain-management" target="${target}"/>
        <ant dir="feed-aggregator" target="${target}"/>
        <ant dir="feed-aggregator-webapp" target="${target}"/>
        <ant dir="helloworld-bpel" target="${target}"/>
        <ant dir="helloworld-dojo-webapp" target="${target}"/>
        <ant dir="helloworld-erlang-reference" target="${target}"/>
        <ant dir="helloworld-erlang-service" target="${target}"/>
        <ant dir="helloworld-jsonrpc-webapp" target="${target}"/>
        <ant dir="helloworld-reference-jms" target="${target}"/>
        <ant dir="helloworld-service-jms" target="${target}"/>
        <ant dir="helloworld-ws-service" target="${target}"/>
        <ant dir="helloworld-ws-service-jms" target="${target}"/>
        <ant dir="helloworld-ws-service-secure" target="${target}"/>
        <ant dir="helloworld-ws-reference" target="${target}"/>
        <ant dir="helloworld-ws-reference-jms" target="${target}"/>
        <ant dir="helloworld-ws-reference-secure" target="${target}"/>
        <ant dir="helloworld-ws-sdo" target="${target}"/>
        <ant dir="helloworld-ws-sdo-webapp" target="${target}"/>
        <ant dir="holder-ws-service" target="${target}"/>
        <ant dir="implementation-composite" target="${target}"/>
        <ant dir="implementation-crud-extension" target="${target}"/>
        <ant dir="implementation-crud" target="${target}"/>
        <ant dir="implementation-notification" target="${target}"/>
        <ant dir="implementation-pojo-extension" target="${target}"/>
        <ant dir="osgi-supplychain" target="${target}"/>
        <ant dir="photo-gallery" target="${target}"/>
        <ant dir="quote-xquery" target="${target}"/>
        <ant dir="simple-bigbank" target="${target}"/>
        <ant dir="simple-bigbank-spring" target="${target}"/>
        <ant dir="simple-callback" target="${target}"/>
        <ant dir="simple-callback-ws" target="${target}"/>
        <ant dir="spring-bigbank-calculator" target="${target}"/>
        <ant dir="spring-bigbank-checkaccount" target="${target}"/>
        <ant dir="spring-bigbank-stockquote" target="${target}"/>
        <ant dir="store" target="${target}"/>
        <ant dir="store-dojo" target="${target}"/>
        <ant dir="store-secure" target="${target}"/>
        <ant dir="store-webapp" target="${target}"/>
        <ant dir="supplychain" target="${target}"/>
        <ant dir="web-resource" target="${target}"/>
    </target>

</project>