Author: jsdelfino
Date: Wed Mar 12 09:21:21 2008
New Revision: 636397

URL: http://svn.apache.org/viewvc?rev=636397&view=rev
Log:
Moved the sample node declarations to the sample domain module. Removed the 
empty nodes module.

Added:
    incubator/tuscany/java/sca/tutorial/domain/cloud/
    incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite   
(with props)
    incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite   
(with props)
    incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite   
(with props)
    incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite   
(with props)
    incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite  
 (with props)
    incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite   
(with props)
    
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite   
(with props)
    
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchAllTutorialNodes.java
      - copied unchanged from r635504, 
incubator/tuscany/java/sca/tutorial/nodes/launch/LaunchAllTutorialNodes.java
    incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCatalogsNode.java
      - copied unchanged from r635416, 
incubator/tuscany/java/sca/tutorial/nodes/launch/LaunchCatalogsNode.java
    incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCurrencyNode.java
      - copied unchanged from r635416, 
incubator/tuscany/java/sca/tutorial/nodes/launch/LaunchCurrencyNode.java
    incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreDBNode.java
      - copied unchanged from r635416, 
incubator/tuscany/java/sca/tutorial/nodes/launch/LaunchStoreDBNode.java
    incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreEUNode.java
      - copied unchanged from r635416, 
incubator/tuscany/java/sca/tutorial/nodes/launch/LaunchStoreEUNode.java
    incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreMergerNode.java
      - copied unchanged from r635416, 
incubator/tuscany/java/sca/tutorial/nodes/launch/LaunchStoreMergerNode.java
    incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreNode.java
      - copied unchanged from r635416, 
incubator/tuscany/java/sca/tutorial/nodes/launch/LaunchStoreNode.java
    
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreSupplierNode.java
      - copied unchanged from r635416, 
incubator/tuscany/java/sca/tutorial/nodes/launch/LaunchStoreSupplierNode.java
Removed:
    incubator/tuscany/java/sca/tutorial/nodes/
Modified:
    incubator/tuscany/java/sca/tutorial/domain/cloud.composite
    incubator/tuscany/java/sca/tutorial/domain/domain.composite
    incubator/tuscany/java/sca/tutorial/domain/pom.xml
    incubator/tuscany/java/sca/tutorial/domain/workspace.xml
    incubator/tuscany/java/sca/tutorial/pom.xml

Modified: incubator/tuscany/java/sca/tutorial/domain/cloud.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud.composite?rev=636397&r1=636396&r2=636397&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud.composite (original)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud.composite Wed Mar 12 
09:21:21 2008
@@ -1,9 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<composite name="cloud.composite"
-  targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0";
+<composite name="cloud"
+  targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0/";
   xmlns="http://www.osoa.org/xmlns/sca/1.0"; 
xmlns:ns1="http://www.osoa.org/xmlns/sca/1.0";>
-  <include name="ns2:backend-nodes" uri="nodes" xmlns:ns2="http://nodes"/>
-  <include name="ns2:frontend-us-node" uri="nodes" xmlns:ns2="http://nodes"/>
-  <include name="ns2:merger-nodes" uri="nodes" xmlns:ns2="http://nodes"/>
-  <include name="ns2:frontend-eu-node" uri="nodes" xmlns:ns2="http://nodes"/>
+  <include name="ns2:CurrencyNode"
+    uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"; 
xmlns:ns2="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
+  <include name="ns2:CatalogsNode"
+    uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"; 
xmlns:ns2="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
+  <include name="ns2:StoreNode"
+    uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"; 
xmlns:ns2="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
+  <include name="ns2:StoreMergerNode"
+    uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"; 
xmlns:ns2="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
+  <include name="ns2:StoreDBNode"
+    uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"; 
xmlns:ns2="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
+  <include name="ns2:StoreSupplierNode"
+    uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"; 
xmlns:ns2="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
+  <include name="ns2:StoreEUNode"
+    uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"; 
xmlns:ns2="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
 </composite>

Added: incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite?rev=636397&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite 
(added)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite Wed 
Mar 12 09:21:21 2008
@@ -0,0 +1,33 @@
+<?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";
+               xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0";
+               targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0/cloud";
+               xmlns:c="http://cloud";
+               name="CatalogsNode">
+
+       <component name="CatalogsNode">
+               <t:implementation.node uri="cloud" composite="c:catalogs"/>
+               <service name="Node">
+                       <binding.ws uri="http://localhost:8200"/>
+               </service>
+       </component> 
+
+</composite>

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite?rev=636397&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite 
(added)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite Wed 
Mar 12 09:21:21 2008
@@ -0,0 +1,33 @@
+<?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";
+               xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0";
+               targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0/cloud";
+               xmlns:c="http://cloud";
+               name="CurrencyNode">
+
+       <component name="CurrencyNode">
+               <t:implementation.node uri="cloud" composite="c:currency"/>
+               <service name="Node">
+                       <binding.ws uri="http://localhost:8201"/>
+               </service>
+       </component> 
+
+</composite>

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite?rev=636397&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite 
(added)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite Wed 
Mar 12 09:21:21 2008
@@ -0,0 +1,35 @@
+<?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";
+               xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0";
+               targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0/cloud";
+               xmlns:s="http://store";
+               name="StoreDBNode">
+
+       <component name="StoreDBNode">
+               <t:implementation.node uri="store-db" composite="s:store-db"/>
+               <service name="Node">
+                       <t:binding.http uri="http://localhost:8102"/>
+                       <t:binding.jsonrpc uri="http://localhost:8102"/>
+                       <t:binding.atom uri="http://localhost:8102"/>
+               </service>
+       </component> 
+
+</composite>

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite?rev=636397&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite 
(added)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite Wed 
Mar 12 09:21:21 2008
@@ -0,0 +1,36 @@
+<?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";
+               xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0";
+               targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0/cloud";
+               xmlns:s="http://store";
+               name="StoreEUNode">
+
+       <component name="StoreEUNode">
+               <t:implementation.node uri="store-eu" composite="s:store-eu"/>
+               <service name="Node">
+                       <t:binding.http uri="http://localhost:8104"/>
+                       <t:binding.jsonrpc uri="http://localhost:8104"/>
+                       <t:binding.atom uri="http://localhost:8104"/>
+                       <binding.ws uri="http://localhost:8444"/>
+               </service>
+       </component> 
+
+</composite>

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite?rev=636397&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite 
(added)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite 
Wed Mar 12 09:21:21 2008
@@ -0,0 +1,35 @@
+<?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";
+               xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0";
+               targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0/cloud";
+               xmlns:s="http://store";
+               name="StoreMergerNode">
+
+       <component name="StoreMergerNode">
+               <t:implementation.node uri="store-merger" 
composite="s:store-merger"/>
+               <service name="Node">
+                       <t:binding.http uri="http://localhost:8101"/>
+                       <t:binding.jsonrpc uri="http://localhost:8101"/>
+                       <t:binding.atom uri="http://localhost:8101"/>
+               </service>
+       </component> 
+
+</composite>

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite?rev=636397&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite (added)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite Wed 
Mar 12 09:21:21 2008
@@ -0,0 +1,35 @@
+<?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";
+               xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0";
+               targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0/cloud";
+               xmlns:s="http://store";
+               name="StoreNode">
+
+       <component name="StoreNode">
+               <t:implementation.node uri="store" composite="s:store"/>
+               <service name="Node">
+                       <t:binding.http uri="http://localhost:8100"/>
+                       <t:binding.jsonrpc uri="http://localhost:8100"/>
+                       <t:binding.atom uri="http://localhost:8100"/>
+               </service>
+       </component> 
+
+</composite>

Propchange: incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite?rev=636397&view=auto
==============================================================================
--- 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite 
(added)
+++ 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite 
Wed Mar 12 09:21:21 2008
@@ -0,0 +1,36 @@
+<?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";
+               xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0";
+               targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0/cloud";
+               xmlns:s="http://store";
+               name="StoreSupplierNode">
+
+       <component name="StoreSupplierNode">
+               <t:implementation.node uri="store-supplier" 
composite="s:store-supplier"/>
+               <service name="Node">
+                       <t:binding.http uri="http://localhost:8103"/>
+                       <t:binding.jsonrpc uri="http://localhost:8103"/>
+                       <t:binding.atom uri="http://localhost:8103"/>
+                       <binding.ws uri="http://localhost:8333"/>
+               </service>
+       </component> 
+
+</composite>

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/tuscany/java/sca/tutorial/domain/domain.composite
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/domain.composite?rev=636397&r1=636396&r2=636397&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/domain.composite (original)
+++ incubator/tuscany/java/sca/tutorial/domain/domain.composite Wed Mar 12 
09:21:21 2008
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<composite name="domain.composite"
+<composite name="domain"
   targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0";
   xmlns="http://www.osoa.org/xmlns/sca/1.0"; 
xmlns:ns1="http://www.osoa.org/xmlns/sca/1.0";>
   <include name="ns2:store" uri="store" xmlns:ns2="http://store"/>

Modified: incubator/tuscany/java/sca/tutorial/domain/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/pom.xml?rev=636397&r1=636396&r2=636397&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/pom.xml (original)
+++ incubator/tuscany/java/sca/tutorial/domain/pom.xml Wed Mar 12 09:21:21 2008
@@ -44,6 +44,18 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-node2-api</artifactId>
+            <version>1.2-incubating-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-node2-impl</artifactId>
+            <version>1.2-incubating-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
             <version>1.2-incubating-SNAPSHOT</version>
             <scope>runtime</scope>
@@ -90,6 +102,28 @@
             <version>1.2-incubating-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ejb</artifactId>
+            <version>1.2-incubating-SNAPSHOT</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-ejb</artifactId>
+            <version>1.2-incubating-SNAPSHOT</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derby</artifactId>
+            <version>10.1.2.1</version>
+            <scope>runtime</scope>
+        </dependency>
+
     </dependencies>
     
     <build>

Modified: incubator/tuscany/java/sca/tutorial/domain/workspace.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/workspace.xml?rev=636397&r1=636396&r2=636397&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/workspace.xml (original)
+++ incubator/tuscany/java/sca/tutorial/domain/workspace.xml Wed Mar 12 
09:21:21 2008
@@ -1,11 +1,13 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <workspace xmlns="http://tuscany.apache.org/xmlns/sca/1.0"; 
xmlns:ns1="http://tuscany.apache.org/xmlns/sca/1.0";>
-  <contribution 
location="http://localhost:9990/files/file:../assets/target/tutorial-assets.jar";
 uri="assets"/>
-  <contribution 
location="http://localhost:9990/files/file:../cloud/target/tutorial-cloud.jar"; 
uri="cloud"/>
-  <contribution 
location="http://localhost:9990/files/file:../store/target/tutorial-store.jar"; 
uri="store"/>
-  <contribution 
location="http://localhost:9990/files/file:../store-merger/target/tutorial-store-merger.jar";
 uri="store-merger"/>
-  <contribution 
location="http://localhost:9990/files/file:../store-db/target/tutorial-store-db.jar";
 uri="store-db"/>
-  <contribution 
location="http://localhost:9990/files/file:../store-supplier/target/tutorial-store-supplier.jar";
 uri="store-supplier"/>
-  <contribution 
location="http://localhost:9990/files/file:../store-eu/target/tutorial-store-eu.jar";
 uri="store-eu"/>
-  <contribution 
location="http://localhost:9990/files/file:../nodes/target/tutorial-nodes.jar"; 
uri="nodes"/>
+  <contribution location="file:../assets/target/tutorial-assets.jar" 
uri="assets"/>
+  <contribution location="file:../cloud/target/tutorial-cloud.jar" 
uri="cloud"/>
+  <contribution location="file:../store/target/tutorial-store.jar" 
uri="store"/>
+  <contribution
+    location="file:../store-merger/target/tutorial-store-merger.jar" 
uri="store-merger"/>
+  <contribution location="file:../store-db/target/tutorial-store-db.jar" 
uri="store-db"/>
+  <contribution
+    location="file:../store-supplier/target/tutorial-store-supplier.jar" 
uri="store-supplier"/>
+  <contribution location="file:../store-eu/target/tutorial-store-eu.jar" 
uri="store-eu"/>
+  <contribution location="file:../domain/cloud" 
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
 </workspace>

Modified: incubator/tuscany/java/sca/tutorial/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/pom.xml?rev=636397&r1=636396&r2=636397&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/pom.xml (original)
+++ incubator/tuscany/java/sca/tutorial/pom.xml Wed Mar 12 09:21:21 2008
@@ -39,7 +39,6 @@
                 <module>assets</module>
                 <module>cloud</module>
                 <module>domain</module>
-                <module>nodes</module>
                 <module>nodes-jee</module>
                 <module>store</module>
                 <module>store-db</module>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to