You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by fm...@apache.org on 2011/02/10 09:57:57 UTC

svn commit: r1069291 [3/10] - in /tuscany/sca-java-2.x/branches/2.0-Beta2: ./ distribution/ distribution/aggregations/base-runtime-aggregation/ distribution/aggregations/base-runtime-nodep/ distribution/aggregations/binding-rmi-runtime-aggregation/ dis...

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd04.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd04.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd04.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/assembly-xsd/src/main/resources/sca-policy-1.1-intents-definitions-cd04.xml Thu Feb 10 08:57:45 2011
@@ -1,249 +1,249 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Copyright(C) OASIS(R) 2005,2010. All Rights Reserved. 
-     OASIS trademark, IPR and other policies apply.  -->
-<sca:definitions xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    targetNamespace="http://docs.oasis-open.org/ns/opencsa/sca/200912">
-                 
-	<!-- Security related intents -->                 
-        <sca:intent name="serverAuthentication" constrains="sca:binding"
-	    intentType="interaction">
-                <sca:description>
-			Communication through the binding requires that the 
-			server is authenticated by the client
-                </sca:description>
-                <sca:qualifier name="transport" default="true"/>
-                <sca:qualifier name="message"/>
-        </sca:intent>
-
-        <sca:intent name="clientAuthentication" constrains="sca:binding"
-	    intentType="interaction">
-                <sca:description>
-			Communication through the binding requires that the 
-			client is authenticated by the server
-                </sca:description>
-                <sca:qualifier name="transport" default="true"/>
-                <sca:qualifier name="message"/>
-        </sca:intent>
-
-        <sca:intent name="authentication" requires="sca:clientAuthentication">
-                <sca:description>
-			A convenience intent to help migration
-                </sca:description>
-        </sca:intent>
-
-        <sca:intent name="mutualAuthentication"
-                requires="sca:clientAuthentication sca:serverAuthentication">
-                <sca:description>
-			Communication through the binding requires that the
-			client and server to authenticate each other
-                </sca:description>
-        </sca:intent>
-
-        <sca:intent name="confidentiality" constrains="sca:binding"
-	    intentType="interaction">
-                <sca:description>
-			Communication through the binding prevents unauthorized 
-			users from reading the messages
-                </sca:description>
-                <sca:qualifier name="transport" default="true"/>
-                <sca:qualifier name="message"/>
-        </sca:intent>
-
-        <sca:intent name="integrity" constrains="sca:binding"
-	    intentType="interaction">
-                <sca:description>
-			Communication through the binding prevents tampering 
-			with the messages sent between the client and the service.
-                </sca:description>
-                <sca:qualifier name="transport" default="true"/>
-                <sca:qualifier name="message"/>
-        </sca:intent>
-
-        <sca:intent name="authorization" constrains="sca:implementation"
-	    intentType="implementation">
-                <sca:description>
-			Ensures clients are authorized to use services. 
-                </sca:description>
-        </sca:intent>
-
-	
-	<!-- Reliable messaging related intents -->    
-        <sca:intent name="atLeastOnce" constrains="sca:binding"
-	    intentType="interaction">
-                <sca:description>
-			This intent is used to indicate that a message sent
-			by a client is always delivered to the component.
-                </sca:description>
-        </sca:intent>
-
-        <sca:intent name="atMostOnce" constrains="sca:binding"
-	    intentType="interaction">
-                <sca:description>
-			This intent is used to indicate that a message that was 
-			successfully sent by a client is not delivered more than 
-			once to the component.
-                </sca:description>
-        </sca:intent>
-
-        <sca:intent name="exactlyOnce" requires="sca:atLeastOnce sca:atMostOnce"
-	    constrains="sca:binding" intentType="interaction">
-                <sca:description>
-			This profile intent is used to indicate that a message sent 
-			by a client is always delivered to the component. It also 
-			indicates that duplicate messages are not delivered to the 
-			component.
-            </sca:description>
-        </sca:intent>
-
-        <sca:intent name="ordered" constrains="sca:binding"
-	    intentType="interaction">
-                <sca:description>
-			This intent is used to indicate that all the messages are 
-			delivered to the component in the order they were sent by 
-			the client.
-                </sca:description>
-        </sca:intent>
-	
-	<!-- Transaction related intents -->
-        <sca:intent name="managedTransaction" excludes="sca:noManagedTransaction"
-	    mutuallyExclusive="true" constrains="sca:implementation" 
-	    intentType="implementation">
-                <sca:description>
-		A managed transaction environment is necessary in order to 
-		run the component. The specific type of managed transaction 
-		needed is not constrained.
-                </sca:description>
-                <sca:qualifier name="global" default="true">
-                        <sca:description>
-			For a component marked with managedTransaction.global 
-			a global transaction needs to be present before dispatching 
-			any method on the component - using any transaction 
-			propagated from the client or else beginning and completing 
-			a new transaction. 
-                        </sca:description>
-                </sca:qualifier>
-                <sca:qualifier name="local">
-                        <sca:description>
-			A component marked with managedTransaction.local needs to 
-			run within a local transaction containment (LTC) that 
-			is started and ended by the SCA runtime.
-                        </sca:description>
-                </sca:qualifier>
-        </sca:intent>
-
-        <sca:intent name="noManagedTransaction" excludes="sca:managedTransaction"
-	    constrains="sca:implementation" intentType="implementation">
-                <sca:description>
-		A component marked with noManagedTransaction needs to run without 
-		a managed transaction, under neither a global transaction nor 
-		an LTC. A transaction propagated to the hosting SCA runtime 
-		is not joined by the hosting runtime on behalf of a 
-		component marked with noManagedtransaction.
-                </sca:description>
-        </sca:intent>
-
-        <sca:intent name="transactedOneWay" excludes="sca:immediateOneWay"
-	    constrains="sca:binding" intentType="implementation">
-                <sca:description>
-		For a reference marked as transactedOneWay any OneWay invocation 
-		messages are transacted as part of a client global 
-		transaction.
-		For a service marked as transactedOneWay any OneWay invocation 
-		message are received from the transport binding in a 
-		transacted fashion, under the service’s global transaction.
-                </sca:description>
-        </sca:intent>
-
-        <sca:intent name="immediateOneWay" excludes="sca:transactedOneWay"
-	    constrains="sca:binding" intentType="implementation">
-                <sca:description>
-		For a reference indicates that any OneWay invocation messages 
-		are sent immediately regardless of any client transaction.
-		For a service indicates that any OneWay invocation is 
-		received immediately regardless of any target service 
-		transaction.
-                </sca:description>
-        </sca:intent>
-
-        <sca:intent name="propagatesTransaction" excludes="sca:suspendsTransaction"
-	    constrains="sca:binding" intentType="interaction">
-                <sca:description>
-		A service marked with propagatesTransaction is dispatched 
-		under any propagated (client) transaction and the service binding 
-		needs to be capable	of receiving a transaction context.
-		A reference marked with propagatesTransaction propagates any 
-		transaction context under which the client runs when the 
-		reference is used for a request-response interaction and the 
-		binding of a reference marked with propagatesTransaction needs to
-		be capable of propagating a transaction context. 
-                </sca:description>
-        </sca:intent>
-
-        <sca:intent name="suspendsTransaction" excludes="sca:propagatesTransaction"
-	    constrains="sca:binding" intentType="interaction">
-                <sca:description>
-		A service marked with suspendsTransaction is not dispatched 
-		under any propagated (client) transaction.
-		A reference marked with suspendsTransaction does not propagate 
-		any transaction context under which the client runs when the 
-		reference is used.
-                </sca:description>
-        </sca:intent>
-	
-        <sca:intent name="managedSharedTransaction"
-                requires="sca:managedTransaction.global sca:propagatesTransaction">
-                <sca:description>
-			Used to indicate that the component requires both the 
-			managedTransaction.global and the propagatesTransactions 
-			intents
-                </sca:description>
-        </sca:intent>
-	
-	<!-- Miscellaneous intents -->	
-	<sca:intent name="asyncInvocation" excludes="sca:propagatesTransaction"
-                constrains="sca:binding"	intentType="interaction">
-                <sca:description>
-			Indicates that request/response operations for the 
-			interface of this wire are "long running" and must be
-			treated as two separate message transmissions
-                </sca:description>
-    </sca:intent>
-	
-	<sca:intent name="EJB" constrains="sca:binding" 
-		intentType="interaction">
-                <sca:description>
-			Specifies that the EJB API is needed to communicate with
-			the service or reference.
-                </sca:description>
-    </sca:intent>
-    
-	<sca:intent name="SOAP" constrains="sca:binding" intentType="interaction" mutuallyExclusive="true">
-		<sca:description>
-		Specifies that the SOAP messaging model is used for delivering 
-		messages.
-                </sca:description>
-                <sca:qualifier name="v1_1" default="true"/>
-                <sca:qualifier name="v1_2"/>
-    </sca:intent>
-
-    <sca:intent name="JMS" constrains="sca:binding" intentType="interaction">
-                <sca:description>
-		Requires that the messages are delivered and received via the 
-		JMS API.
-                </sca:description>
-    </sca:intent>
-
-    <sca:intent name="noListener" constrains="sca:binding"
-	    intentType="interaction">
-                <sca:description>
-		This intent can only be used on a reference. Indicates that the 
-		client is not able to handle new inbound connections. The binding 
-		and callback binding are configured so that any 
-		response or callback comes either through a back channel of the 
-		connection from the client to the server or by having the client 
-		poll the server for messages. 
-                </sca:description>
-    </sca:intent>
-	
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright(C) OASIS(R) 2005,2010. All Rights Reserved. 
+     OASIS trademark, IPR and other policies apply.  -->
+<sca:definitions xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    targetNamespace="http://docs.oasis-open.org/ns/opencsa/sca/200912">
+                 
+	<!-- Security related intents -->                 
+        <sca:intent name="serverAuthentication" constrains="sca:binding"
+	    intentType="interaction">
+                <sca:description>
+			Communication through the binding requires that the 
+			server is authenticated by the client
+                </sca:description>
+                <sca:qualifier name="transport" default="true"/>
+                <sca:qualifier name="message"/>
+        </sca:intent>
+
+        <sca:intent name="clientAuthentication" constrains="sca:binding"
+	    intentType="interaction">
+                <sca:description>
+			Communication through the binding requires that the 
+			client is authenticated by the server
+                </sca:description>
+                <sca:qualifier name="transport" default="true"/>
+                <sca:qualifier name="message"/>
+        </sca:intent>
+
+        <sca:intent name="authentication" requires="sca:clientAuthentication">
+                <sca:description>
+			A convenience intent to help migration
+                </sca:description>
+        </sca:intent>
+
+        <sca:intent name="mutualAuthentication"
+                requires="sca:clientAuthentication sca:serverAuthentication">
+                <sca:description>
+			Communication through the binding requires that the
+			client and server to authenticate each other
+                </sca:description>
+        </sca:intent>
+
+        <sca:intent name="confidentiality" constrains="sca:binding"
+	    intentType="interaction">
+                <sca:description>
+			Communication through the binding prevents unauthorized 
+			users from reading the messages
+                </sca:description>
+                <sca:qualifier name="transport" default="true"/>
+                <sca:qualifier name="message"/>
+        </sca:intent>
+
+        <sca:intent name="integrity" constrains="sca:binding"
+	    intentType="interaction">
+                <sca:description>
+			Communication through the binding prevents tampering 
+			with the messages sent between the client and the service.
+                </sca:description>
+                <sca:qualifier name="transport" default="true"/>
+                <sca:qualifier name="message"/>
+        </sca:intent>
+
+        <sca:intent name="authorization" constrains="sca:implementation"
+	    intentType="implementation">
+                <sca:description>
+			Ensures clients are authorized to use services. 
+                </sca:description>
+        </sca:intent>
+
+	
+	<!-- Reliable messaging related intents -->    
+        <sca:intent name="atLeastOnce" constrains="sca:binding"
+	    intentType="interaction">
+                <sca:description>
+			This intent is used to indicate that a message sent
+			by a client is always delivered to the component.
+                </sca:description>
+        </sca:intent>
+
+        <sca:intent name="atMostOnce" constrains="sca:binding"
+	    intentType="interaction">
+                <sca:description>
+			This intent is used to indicate that a message that was 
+			successfully sent by a client is not delivered more than 
+			once to the component.
+                </sca:description>
+        </sca:intent>
+
+        <sca:intent name="exactlyOnce" requires="sca:atLeastOnce sca:atMostOnce"
+	    constrains="sca:binding" intentType="interaction">
+                <sca:description>
+			This profile intent is used to indicate that a message sent 
+			by a client is always delivered to the component. It also 
+			indicates that duplicate messages are not delivered to the 
+			component.
+            </sca:description>
+        </sca:intent>
+
+        <sca:intent name="ordered" constrains="sca:binding"
+	    intentType="interaction">
+                <sca:description>
+			This intent is used to indicate that all the messages are 
+			delivered to the component in the order they were sent by 
+			the client.
+                </sca:description>
+        </sca:intent>
+	
+	<!-- Transaction related intents -->
+        <sca:intent name="managedTransaction" excludes="sca:noManagedTransaction"
+	    mutuallyExclusive="true" constrains="sca:implementation" 
+	    intentType="implementation">
+                <sca:description>
+		A managed transaction environment is necessary in order to 
+		run the component. The specific type of managed transaction 
+		needed is not constrained.
+                </sca:description>
+                <sca:qualifier name="global" default="true">
+                        <sca:description>
+			For a component marked with managedTransaction.global 
+			a global transaction needs to be present before dispatching 
+			any method on the component - using any transaction 
+			propagated from the client or else beginning and completing 
+			a new transaction. 
+                        </sca:description>
+                </sca:qualifier>
+                <sca:qualifier name="local">
+                        <sca:description>
+			A component marked with managedTransaction.local needs to 
+			run within a local transaction containment (LTC) that 
+			is started and ended by the SCA runtime.
+                        </sca:description>
+                </sca:qualifier>
+        </sca:intent>
+
+        <sca:intent name="noManagedTransaction" excludes="sca:managedTransaction"
+	    constrains="sca:implementation" intentType="implementation">
+                <sca:description>
+		A component marked with noManagedTransaction needs to run without 
+		a managed transaction, under neither a global transaction nor 
+		an LTC. A transaction propagated to the hosting SCA runtime 
+		is not joined by the hosting runtime on behalf of a 
+		component marked with noManagedtransaction.
+                </sca:description>
+        </sca:intent>
+
+        <sca:intent name="transactedOneWay" excludes="sca:immediateOneWay"
+	    constrains="sca:binding" intentType="implementation">
+                <sca:description>
+		For a reference marked as transactedOneWay any OneWay invocation 
+		messages are transacted as part of a client global 
+		transaction.
+		For a service marked as transactedOneWay any OneWay invocation 
+		message are received from the transport binding in a 
+		transacted fashion, under the service’s global transaction.
+                </sca:description>
+        </sca:intent>
+
+        <sca:intent name="immediateOneWay" excludes="sca:transactedOneWay"
+	    constrains="sca:binding" intentType="implementation">
+                <sca:description>
+		For a reference indicates that any OneWay invocation messages 
+		are sent immediately regardless of any client transaction.
+		For a service indicates that any OneWay invocation is 
+		received immediately regardless of any target service 
+		transaction.
+                </sca:description>
+        </sca:intent>
+
+        <sca:intent name="propagatesTransaction" excludes="sca:suspendsTransaction"
+	    constrains="sca:binding" intentType="interaction">
+                <sca:description>
+		A service marked with propagatesTransaction is dispatched 
+		under any propagated (client) transaction and the service binding 
+		needs to be capable	of receiving a transaction context.
+		A reference marked with propagatesTransaction propagates any 
+		transaction context under which the client runs when the 
+		reference is used for a request-response interaction and the 
+		binding of a reference marked with propagatesTransaction needs to
+		be capable of propagating a transaction context. 
+                </sca:description>
+        </sca:intent>
+
+        <sca:intent name="suspendsTransaction" excludes="sca:propagatesTransaction"
+	    constrains="sca:binding" intentType="interaction">
+                <sca:description>
+		A service marked with suspendsTransaction is not dispatched 
+		under any propagated (client) transaction.
+		A reference marked with suspendsTransaction does not propagate 
+		any transaction context under which the client runs when the 
+		reference is used.
+                </sca:description>
+        </sca:intent>
+	
+        <sca:intent name="managedSharedTransaction"
+                requires="sca:managedTransaction.global sca:propagatesTransaction">
+                <sca:description>
+			Used to indicate that the component requires both the 
+			managedTransaction.global and the propagatesTransactions 
+			intents
+                </sca:description>
+        </sca:intent>
+	
+	<!-- Miscellaneous intents -->	
+	<sca:intent name="asyncInvocation" excludes="sca:propagatesTransaction"
+                constrains="sca:binding"	intentType="interaction">
+                <sca:description>
+			Indicates that request/response operations for the 
+			interface of this wire are "long running" and must be
+			treated as two separate message transmissions
+                </sca:description>
+    </sca:intent>
+	
+	<sca:intent name="EJB" constrains="sca:binding" 
+		intentType="interaction">
+                <sca:description>
+			Specifies that the EJB API is needed to communicate with
+			the service or reference.
+                </sca:description>
+    </sca:intent>
+    
+	<sca:intent name="SOAP" constrains="sca:binding" intentType="interaction" mutuallyExclusive="true">
+		<sca:description>
+		Specifies that the SOAP messaging model is used for delivering 
+		messages.
+                </sca:description>
+                <sca:qualifier name="v1_1" default="true"/>
+                <sca:qualifier name="v1_2"/>
+    </sca:intent>
+
+    <sca:intent name="JMS" constrains="sca:binding" intentType="interaction">
+                <sca:description>
+		Requires that the messages are delivered and received via the 
+		JMS API.
+                </sca:description>
+    </sca:intent>
+
+    <sca:intent name="noListener" constrains="sca:binding"
+	    intentType="interaction">
+                <sca:description>
+		This intent can only be used on a reference. Indicates that the 
+		client is not able to handle new inbound connections. The binding 
+		and callback binding are configured so that any 
+		response or callback comes either through a back channel of the 
+		connection from the client to the server or by having the client 
+		poll the server for messages. 
+                </sca:description>
+    </sca:intent>
+	
 </sca:definitions>
\ No newline at end of file

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/assembly/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/assembly/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/assembly/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/assembly/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-assembly</artifactId>
@@ -33,12 +33,12 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-monitor</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-extensibility</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>        
     </dependencies>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/base-runtime-pom/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/base-runtime-pom/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/base-runtime-pom/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/base-runtime-pom/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/base-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/base-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/base-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/base-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-atom-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-atom-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-atom-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-atom-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,61 +33,61 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-atom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-wsdl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-data-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-common-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-web-javascript</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
@@ -220,21 +220,21 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-atom/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-atom/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-atom/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-atom/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,13 +33,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
 			<scope>test</scope>			
         </dependency>
 				

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-comet-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-comet-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-comet-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-comet-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.tuscany.sca</groupId>
 		<artifactId>tuscany-modules</artifactId>
-		<version>2.0-SNAPSHOT</version>
+		<version>2.0-Beta2-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 
@@ -36,7 +36,7 @@
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-base-runtime-pom</artifactId>
             <type>pom</type>
-			<version>2.0-SNAPSHOT</version>
+			<version>2.0-Beta2-SNAPSHOT</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-comet/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-comet/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-comet/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-comet/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-corba-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-corba-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-corba-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-corba-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-corba-runtime</artifactId>
@@ -32,25 +32,25 @@
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-interface-java</artifactId>
-			<version>2.0-SNAPSHOT</version>
+			<version>2.0-Beta2-SNAPSHOT</version>
 		</dependency>
     
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-binding-corba</artifactId>
-			<version>2.0-SNAPSHOT</version>
+			<version>2.0-Beta2-SNAPSHOT</version>
 		</dependency>
 		
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-host-corba</artifactId>
-			<version>2.0-SNAPSHOT</version>
+			<version>2.0-Beta2-SNAPSHOT</version>
 		</dependency>
 	
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-host-corba-jse</artifactId>
-			<version>2.0-SNAPSHOT</version>
+			<version>2.0-Beta2-SNAPSHOT</version>
 			<scope>test</scope>
 		</dependency>
 		

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-corba/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-corba/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-corba/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-corba/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-corba</artifactId>
@@ -33,19 +33,19 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
 	<dependency>
 		<groupId>org.apache.tuscany.sca</groupId>
 		<artifactId>tuscany-host-corba</artifactId>
-		<version>2.0-SNAPSHOT</version>
+		<version>2.0-Beta2-SNAPSHOT</version>
 	</dependency>
 	
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ejb-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ejb-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ejb-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ejb-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -34,13 +34,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ejb</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
@@ -72,14 +72,14 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ejb/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ejb/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ejb/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ejb/pom.xml Thu Feb 10 08:57:45 2011
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -34,19 +34,19 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-http-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-http-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-http-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-http-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,31 +33,31 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-common-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
@@ -70,28 +70,28 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
                 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-json</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-http/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-http/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-http/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-http/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,7 +33,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
         <dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms-runtime-activemq/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms-runtime-activemq/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms-runtime-activemq/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms-runtime-activemq/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-jms-runtime-activemq</artifactId>
@@ -33,14 +33,14 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jms</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
            <scope>provided</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jms-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-jms-runtime</artifactId>
@@ -34,14 +34,14 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-base-runtime-pom</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency> 
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jms</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jms/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-jms</artifactId>
@@ -33,7 +33,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonp-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonp-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonp-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonp-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-jsonp-runtime</artifactId>
@@ -33,19 +33,19 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jsonp</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <!-- dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-http-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency-->   
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>   
 
         <dependency>
@@ -57,7 +57,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-json</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>         
 
         <dependency>
@@ -70,28 +70,28 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>    
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonp/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonp/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonp/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonp/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-jsonp</artifactId>
@@ -33,7 +33,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonrpc-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonrpc-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonrpc-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonrpc-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,49 +33,49 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jsonrpc</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-json</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-common-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-web-javascript</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
@@ -93,7 +93,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
@@ -146,14 +146,14 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonrpc/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonrpc/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonrpc/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-jsonrpc/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,7 +33,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-local-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-local-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-local-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-local-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -35,14 +35,14 @@
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>       
 
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
                

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rest-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rest-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rest-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rest-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,74 +33,74 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-rest</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-data-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-common-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-jaxb</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-json</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-jaxrs</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-web-javascript</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
@@ -181,21 +181,21 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rest/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rest/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rest/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rest/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,13 +33,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-common-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
                 
         <dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rmi-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rmi-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rmi-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rmi-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-rmi-runtime</artifactId>
@@ -33,7 +33,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-runtime-pom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <type>pom</type>
             <scope>provided</scope>
         </dependency>
@@ -41,19 +41,19 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-rmi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-rmi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-base-runtime-pom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <type>pom</type>
             <scope>test</scope>
         </dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rmi/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rmi/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rmi/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-rmi/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-rmi</artifactId>
@@ -33,7 +33,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-runtime-pom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <type>pom</type>
             <scope>provided</scope>
         </dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-sca-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-sca-runtime/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-sca-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-sca-runtime/pom.xml Thu Feb 10 08:57:45 2011
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -35,37 +35,37 @@
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>  
         
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>    
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency> 
         
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>       
 
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>       
         
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-contribution</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>    
     </dependencies>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-sca-runtime2/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-sca-runtime2/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-sca-runtime2/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-sca-runtime2/pom.xml Thu Feb 10 08:57:45 2011
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -35,37 +35,37 @@
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>  
         
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>    
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency> 
         
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>       
 
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>       
         
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-contribution</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>    
     </dependencies>
 

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-axis2/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-axis2/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-axis2/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-axis2/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-runtime-pom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <type>pom</type>
             <scope>provided</scope>
         </dependency>     
@@ -44,7 +44,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-security</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>provided</scope> <!-- it's in base -->
         </dependency>      
 
@@ -155,14 +155,14 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-axiom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-jaxb-axiom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>        
 
@@ -170,7 +170,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-base-runtime-pom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <type>pom</type>
             <scope>test</scope>
         </dependency> 
@@ -178,7 +178,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>     
    

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-jaxws-ri/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-jaxws-ri/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-jaxws-ri/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-jaxws-ri/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,60 +33,60 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-wsdl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-runtime-jaxws</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-wsdlgen</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-jaxb</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>
 
@@ -94,21 +94,21 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-jaxws</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-xsd</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
 
@@ -117,21 +117,21 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-jaxws/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-jaxws/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-jaxws/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-runtime-jaxws/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,73 +33,73 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-wsdl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-wsdlgen</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-jaxb</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-jaxws</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-xsd</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <!--  Test dependencies -->
@@ -107,14 +107,14 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         

Modified: tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-wsdlgen/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-wsdlgen/pom.xml?rev=1069291&r1=1069290&r2=1069291&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-wsdlgen/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws-wsdlgen/pom.xml Thu Feb 10 08:57:45 2011
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-Beta2-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>tuscany-binding-ws-wsdlgen</artifactId>
@@ -33,32 +33,32 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-wsdl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-jaxws</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-xsd</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
         </dependency>
 
         <dependency>
@@ -70,7 +70,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>