You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2008/06/01 16:53:06 UTC

svn commit: r662229 - in /incubator/tuscany/sandbox/travelsample/gettingstarted: build.xml pom.xml src/currencyconverter.composite src/trip.composite src/tripws.composite

Author: slaws
Date: Sun Jun  1 07:53:05 2008
New Revision: 662229

URL: http://svn.apache.org/viewvc?rev=662229&view=rev
Log:
Add composite files

Added:
    incubator/tuscany/sandbox/travelsample/gettingstarted/src/currencyconverter.composite   (with props)
    incubator/tuscany/sandbox/travelsample/gettingstarted/src/trip.composite   (with props)
    incubator/tuscany/sandbox/travelsample/gettingstarted/src/tripws.composite   (with props)
Modified:
    incubator/tuscany/sandbox/travelsample/gettingstarted/build.xml
    incubator/tuscany/sandbox/travelsample/gettingstarted/pom.xml

Modified: incubator/tuscany/sandbox/travelsample/gettingstarted/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/travelsample/gettingstarted/build.xml?rev=662229&r1=662228&r2=662229&view=diff
==============================================================================
--- incubator/tuscany/sandbox/travelsample/gettingstarted/build.xml (original)
+++ incubator/tuscany/sandbox/travelsample/gettingstarted/build.xml Sun Jun  1 07:53:05 2008
@@ -32,7 +32,6 @@
     <target name="run">
         <java classname="client.CurrencyConverterClient" fork="true">
             <classpath>
-                <pathelement path="resources"/>
                 <pathelement path="target/classes"/>
                 <pathelement location="${env.TUSCANY}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
@@ -42,7 +41,6 @@
     <target name="runtrip">
         <java classname="client.TripClient" fork="true">
             <classpath>
-            	<pathelement path="resources"/>
                 <pathelement path="target/classes"/>
             	<pathelement location="${env.TUSCANY}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
@@ -52,7 +50,6 @@
     <target name="runtripws">
         <java classname="client.TripWsClient" fork="true">
             <classpath>
-                <pathelement path="resources"/>
                 <pathelement path="target/classes"/>
                 <pathelement location="${env.TUSCANY}/lib/tuscany-sca-manifest.jar"/>
             </classpath>

Modified: incubator/tuscany/sandbox/travelsample/gettingstarted/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/travelsample/gettingstarted/pom.xml?rev=662229&r1=662228&r2=662229&view=diff
==============================================================================
--- incubator/tuscany/sandbox/travelsample/gettingstarted/pom.xml (original)
+++ incubator/tuscany/sandbox/travelsample/gettingstarted/pom.xml Sun Jun  1 07:53:05 2008
@@ -68,10 +68,5 @@
     <build>
        <finalName>${artifactId}</finalName>
        <sourceDirectory>${basedir}/src</sourceDirectory>
-       <resources>
-          <resource>
-              <directory>${basedir}/resources</directory>
-          </resource>
-       </resources>
     </build>
 </project>

Added: incubator/tuscany/sandbox/travelsample/gettingstarted/src/currencyconverter.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/travelsample/gettingstarted/src/currencyconverter.composite?rev=662229&view=auto
==============================================================================
--- incubator/tuscany/sandbox/travelsample/gettingstarted/src/currencyconverter.composite (added)
+++ incubator/tuscany/sandbox/travelsample/gettingstarted/src/currencyconverter.composite Sun Jun  1 07:53:05 2008
@@ -0,0 +1,29 @@
+<?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.    
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+           targetNamespace="http://scatours"
+           xmlns:sample="http://scatours"
+           name="currencyconverter">
+
+    <component name="CurrencyConverterComponent">
+		<implementation.java class="currencyconverter.CurrencyConverterImpl"/>
+    </component>
+
+</composite>

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/currencyconverter.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/currencyconverter.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/currencyconverter.composite
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/sandbox/travelsample/gettingstarted/src/trip.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/travelsample/gettingstarted/src/trip.composite?rev=662229&view=auto
==============================================================================
--- incubator/tuscany/sandbox/travelsample/gettingstarted/src/trip.composite (added)
+++ incubator/tuscany/sandbox/travelsample/gettingstarted/src/trip.composite Sun Jun  1 07:53:05 2008
@@ -0,0 +1,34 @@
+<?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.    
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+           targetNamespace="http://scatours"
+           xmlns:sample="http://scatours"
+           name="trip">
+
+    <component name="TripComponent">
+        <implementation.java class="trip.TripImpl"/>
+        <reference name="currencyConverter" target="CurrencyConverterComponent"/>
+    </component>
+    
+    <component name="CurrencyConverterComponent">
+		<implementation.java class="currencyconverter.CurrencyConverterImpl"/>
+    </component>
+
+</composite>

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/trip.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/trip.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/trip.composite
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/sandbox/travelsample/gettingstarted/src/tripws.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/travelsample/gettingstarted/src/tripws.composite?rev=662229&view=auto
==============================================================================
--- incubator/tuscany/sandbox/travelsample/gettingstarted/src/tripws.composite (added)
+++ incubator/tuscany/sandbox/travelsample/gettingstarted/src/tripws.composite Sun Jun  1 07:53:05 2008
@@ -0,0 +1,39 @@
+<?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.    
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+           targetNamespace="http://scatours"
+           xmlns:sample="http://scatours"
+           name="tripws">
+
+    <component name="TripComponent">
+        <implementation.java class="trip.TripImpl"/>
+        <reference name="currencyConverter" target="CurrencyConverterComponent">
+            <binding.ws/>
+        </reference>
+    </component>
+    
+    <component name="CurrencyConverterComponent">
+		<implementation.java class="currencyconverter.CurrencyConverterImpl"/>
+		<service name="CurrencyConverter">
+		    <binding.ws uri="http://localhost:8085/CurrencyConverterComponent"/>
+		</service>
+    </component>
+
+</composite>

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/tripws.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/tripws.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/sandbox/travelsample/gettingstarted/src/tripws.composite
------------------------------------------------------------------------------
    svn:mime-type = text/xml