Author: jsdelfino
Date: Sun Mar 16 23:28:41 2008
New Revision: 637737
URL: http://svn.apache.org/viewvc?rev=637737&view=rev
Log:
Adjust node namespaces. Simplified node URIs in the launchers. Added a node for
the catalog webapp.
Added:
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogWebAppNode.composite
(with props)
Removed:
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchAllTutorialNodes.java
Modified:
incubator/tuscany/java/sca/tutorial/domain/cloud.composite
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite
incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite
incubator/tuscany/java/sca/tutorial/domain/domain.composite
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCatalogsNode.java
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCurrencyNode.java
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreDBNode.java
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreEUNode.java
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreMergerNode.java
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreNode.java
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreSupplierNode.java
incubator/tuscany/java/sca/tutorial/domain/workspace.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=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud.composite (original)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud.composite Sun Mar 16
23:28:41 2008
@@ -1,19 +1,31 @@
<?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 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: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"/>
+ <include name="ns2:CurrencyNode"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud" xmlns:ns2="cloud:/"/>
+ <include name="ns2:CatalogsNode"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud" xmlns:ns2="cloud:/"/>
+ <include name="ns2:StoreNode"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud" xmlns:ns2="cloud:/"/>
+ <include name="ns2:StoreMergerNode"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud" xmlns:ns2="cloud:/"/>
+ <include name="ns2:StoreDBNode"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud" xmlns:ns2="cloud:/"/>
+ <include name="ns2:StoreSupplierNode"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud" xmlns:ns2="cloud:/"/>
+ <include name="ns2:StoreEUNode"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud" xmlns:ns2="cloud:/"/>
+ <include name="ns2:CatalogWebAppNode"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud" xmlns:ns2="cloud:/"/>
</composite>
Added:
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogWebAppNode.composite
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogWebAppNode.composite?rev=637737&view=auto
==============================================================================
---
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogWebAppNode.composite
(added)
+++
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogWebAppNode.composite
Sun Mar 16 23:28:41 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"
+ xmlns:c="http://catalog"
+ targetNamespace="cloud:/"
+ name="CatalogWebAppNode">
+
+ <component name="CatalogWebAppNode">
+ <t:implementation.node uri="catalog-webapp"
composite="c:catalog-web" />
+ <service name="Node">
+ <binding.ws
uri="http://localhost:8080/CatalogWebAppNode" />
+ <t:binding.http
uri="http://localhost:8080/CatalogWebAppNode" />
+ <t:binding.jsonrpc
uri="http://localhost:8080/CatalogWebAppNode" />
+ <t:binding.atom
uri="http://localhost:8080/CatalogWebAppNode" />
+ </service>
+ </component>
+
+</composite>
\ No newline at end of file
Propchange:
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogWebAppNode.composite
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogWebAppNode.composite
------------------------------------------------------------------------------
svn:keywords = Rev Date
Modified:
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=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/CatalogsNode.composite Sun
Mar 16 23:28:41 2008
@@ -19,7 +19,7 @@
-->
<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"
+ targetNamespace="cloud:/"
xmlns:c="http://cloud"
name="CatalogsNode">
Modified:
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=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/CurrencyNode.composite Sun
Mar 16 23:28:41 2008
@@ -19,7 +19,7 @@
-->
<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"
+ targetNamespace="cloud:/"
xmlns:c="http://cloud"
name="CurrencyNode">
Modified: 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=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/StoreDBNode.composite Sun
Mar 16 23:28:41 2008
@@ -19,7 +19,7 @@
-->
<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"
+ targetNamespace="cloud:/"
xmlns:s="http://store"
name="StoreDBNode">
Modified: 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=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/StoreEUNode.composite Sun
Mar 16 23:28:41 2008
@@ -19,7 +19,7 @@
-->
<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"
+ targetNamespace="cloud:/"
xmlns:s="http://store"
name="StoreEUNode">
Modified:
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=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/StoreMergerNode.composite
Sun Mar 16 23:28:41 2008
@@ -19,7 +19,7 @@
-->
<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"
+ targetNamespace="cloud:/"
xmlns:s="http://store"
name="StoreMergerNode">
Modified: 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=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/cloud/StoreNode.composite Sun
Mar 16 23:28:41 2008
@@ -19,7 +19,7 @@
-->
<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"
+ targetNamespace="cloud:/"
xmlns:s="http://store"
name="StoreNode">
Modified:
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=637737&r1=637736&r2=637737&view=diff
==============================================================================
---
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite
(original)
+++
incubator/tuscany/java/sca/tutorial/domain/cloud/StoreSupplierNode.composite
Sun Mar 16 23:28:41 2008
@@ -19,7 +19,7 @@
-->
<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"
+ targetNamespace="cloud:/"
xmlns:s="http://store"
name="StoreSupplierNode">
Modified: incubator/tuscany/java/sca/tutorial/domain/domain.composite
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/domain.composite?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/domain.composite (original)
+++ incubator/tuscany/java/sca/tutorial/domain/domain.composite Sun Mar 16
23:28:41 2008
@@ -1,4 +1,22 @@
<?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 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">
@@ -9,4 +27,5 @@
<include name="ns2:store-eu" uri="store-eu" xmlns:ns2="http://store"/>
<include name="ns2:catalogs" uri="cloud" xmlns:ns2="http://cloud"/>
<include name="ns2:currency" uri="cloud" xmlns:ns2="http://cloud"/>
+ <include name="ns2:catalog-web" uri="catalog-webapp"
xmlns:ns2="http://catalog"/>
</composite>
Modified:
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCatalogsNode.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCatalogsNode.java?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCatalogsNode.java
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCatalogsNode.java
Sun Mar 16 23:28:41 2008
@@ -23,6 +23,6 @@
public class LaunchCatalogsNode {
public static void main(String[] args) throws Exception {
- NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/composite-image/?composite=composite:cloud;http://cloud;catalogs"});
+ NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/node-image/node:CatalogsNode"});
}
}
Modified:
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCurrencyNode.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCurrencyNode.java?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCurrencyNode.java
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/launch/LaunchCurrencyNode.java
Sun Mar 16 23:28:41 2008
@@ -23,6 +23,6 @@
public class LaunchCurrencyNode {
public static void main(String[] args) throws Exception {
- NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/composite-image/?composite=composite:cloud;http://cloud;currency"});
+ NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/node-image/node:CurrencyNode"});
}
}
Modified:
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreDBNode.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreDBNode.java?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreDBNode.java
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreDBNode.java
Sun Mar 16 23:28:41 2008
@@ -24,6 +24,6 @@
public class LaunchStoreDBNode {
public static void main(String[] args) throws Exception {
- NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/composite-image/?composite=composite:store-db;http://store;store-db"});
+ NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/node-image/node:StoreDBNode"});
}
}
Modified:
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreEUNode.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreEUNode.java?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreEUNode.java
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreEUNode.java
Sun Mar 16 23:28:41 2008
@@ -23,6 +23,6 @@
public class LaunchStoreEUNode {
public static void main(String[] args) throws Exception {
- NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/composite-image/?composite=composite:store-eu;http://store;store-eu"});
+ NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/node-image/node:StoreEUNode"});
}
}
Modified:
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreMergerNode.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreMergerNode.java?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
---
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreMergerNode.java
(original)
+++
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreMergerNode.java
Sun Mar 16 23:28:41 2008
@@ -23,6 +23,6 @@
public class LaunchStoreMergerNode {
public static void main(String[] args) throws Exception {
- NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/composite-image/?composite=composite:store-merger;http://store;store-merger"});
+ NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/node-image/node:StoreMergerNode"});
}
}
Modified: incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreNode.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreNode.java?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreNode.java
(original)
+++ incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreNode.java Sun
Mar 16 23:28:41 2008
@@ -23,6 +23,6 @@
public class LaunchStoreNode {
public static void main(String[] args) throws Exception {
- NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/composite-image/?composite=composite:store;http://store;store"});
+ NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/node-image/node:StoreNode"});
}
}
Modified:
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreSupplierNode.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreSupplierNode.java?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
---
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreSupplierNode.java
(original)
+++
incubator/tuscany/java/sca/tutorial/domain/launch/LaunchStoreSupplierNode.java
Sun Mar 16 23:28:41 2008
@@ -23,6 +23,6 @@
public class LaunchStoreSupplierNode {
public static void main(String[] args) throws Exception {
- NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/composite-image/?composite=composite:store-supplier;http://store;store-supplier"});
+ NodeImplementationLauncher.main(new String[]
{"http://localhost:9990/node-image/node:StoreSupplierNode"});
}
}
Modified: incubator/tuscany/java/sca/tutorial/domain/workspace.xml
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tutorial/domain/workspace.xml?rev=637737&r1=637736&r2=637737&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tutorial/domain/workspace.xml (original)
+++ incubator/tuscany/java/sca/tutorial/domain/workspace.xml Sun Mar 16
23:28:41 2008
@@ -1,13 +1,30 @@
<?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.
+-->
<workspace xmlns="http://tuscany.apache.org/xmlns/sca/1.0"
xmlns:ns1="http://tuscany.apache.org/xmlns/sca/1.0">
<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-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-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:../nodes-jee/catalog-webapp/target/tutorial-catalog-webapp.war"
uri="catalog-webapp"/>
<contribution location="file:../domain/cloud"
uri="http://tuscany.apache.org/xmlns/sca/1.0/cloud"/>
</workspace>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]