You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ke...@apache.org on 2010/05/27 17:53:40 UTC

svn commit: r948871 [2/14] - in /tuscany/sca-java-2.x/branches/sca-java-2.0-M5: ./ archetypes/ archetypes/contribution-jar/ archetypes/contribution-jar/src/main/resources/archetype-resources/ archetypes/contribution-zip-discriptor/ archetypes/contribut...

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/compliance-tests/policy/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/compliance-tests/policy/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/compliance-tests/policy/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/compliance-tests/policy/pom.xml Thu May 27 15:53:32 2010
@@ -1,136 +1,136 @@
-<?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.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-compliance-tests</artifactId>
-        <version>2.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <artifactId>tuscany-compliance-test-policy</artifactId>
-    <name>Apache Tuscany SCA Specification Compliance Tests Policy</name>
-
-    <dependencies>
-
-        <dependency>
-            <!-- This is only needed to get the module working in Eclipse which doesn't pick it up from the dependency plugin unpack -->
-            <!-- The dependency plugin unpack is needed as presently the surefire plugin wont run tests in a dependency jar -->
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>oasis-policy-test-runner</artifactId>
-            <version>1.0-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca.shades</groupId>
-            <artifactId>tuscany-base</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <!-- This is need for POL_4013 and POL_4028 when running with Sun JDK which 
-            gets an unsupported operation exception creating an XMLStreamReader from a DOMSource
-            when Tuscany is writing a property value  -->
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
-            <version>3.2.4</version>
-            <scope>runtime</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>stax</groupId>
-                    <artifactId>stax-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.5</version>
-            <scope>test</scope>
-        </dependency>
-
-    </dependencies>
-
-  <build>
-    <finalName>${artifactId}</finalName>
-    <plugins>
-                        
-      <plugin>
-         <groupId>org.apache.maven.plugins</groupId>
-         <artifactId>maven-surefire-plugin</artifactId>
-         <configuration>
-           <excludes>
-              <exclude>**/POL_3001_TestCase.java</exclude><!--  see TUSCANY-3370 -->
-              <exclude>**/POL_3002_TestCase.java</exclude><!--  see TUSCANY-3370 -->
-              <exclude>**/POL_4003_TestCase.java</exclude><!--  see TUSCANY-3488 -->
-              <exclude>**/POL_4028_TestCase.java</exclude><!--  see TUSCANY-xxxx - Passes in otest module -->
-              <!-- transaction intents -->
-              <exclude>**/POL_9006_TestCase.java</exclude><!--  see TUSCANY-3487-->
-              <exclude>**/POL_9009_TestCase.java</exclude><!--  see TUSCANY-3487-->
-              <exclude>**/POL_9015_TestCase.java</exclude><!--  see TUSCANY-3487-->
-              <exclude>**/POL_9016_TestCase.java</exclude><!--  see TUSCANY-3487-->
-              <exclude>**/POL_9017_TestCase.java</exclude><!--  see TUSCANY-3487-->
-              <exclude>**/POL_9018_TestCase.java</exclude><!--  see TUSCANY-3487-->
-              <!-- noListener intents -->
-              <exclude>**/POL_10001_TestCase.java</exclude><!--  see TUSCANY-3491-->
-              <exclude>**/POL_10002_TestCase.java</exclude><!--  see TUSCANY-3491-->
-
-              <exclude>**/POL_11001_TestCase.java</exclude><!--  see TUSCANY-xxxx -->
-           </excludes>
-         </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>unpack</id>
-            <phase>test-compile</phase>
-            <goals>
-              <goal>unpack</goal>
-            </goals>
-            <configuration>
-               <artifactItems>
-                 <artifactItem>
-                   <groupId>org.apache.tuscany.sca</groupId>
-                   <artifactId>oasis-policy-contributions</artifactId>
-                   <version>1.0-SNAPSHOT</version>
-                   <type>zip</type>
-                   <outputDirectory>${project.build.directory}/oasis-contributions</outputDirectory>
-                 </artifactItem>
-                 <artifactItem>
-                   <groupId>org.apache.tuscany.sca</groupId>
-                   <artifactId>oasis-policy-test-runner</artifactId>
-                   <version>1.0-SNAPSHOT</version>
-                   <type>jar</type>
-                   <excludes>commons-logging.properties,oasis-sca-tests.properties,tuscany-oasis-sca-tests-errors.properties</excludes>
-                   <outputDirectory>${project.build.directory}/test-classes</outputDirectory>
-                 </artifactItem>
-               </artifactItems>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
-    </plugins>
-  </build>
-</project>
+<?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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-compliance-tests</artifactId>
+        <version>2.0-M5-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>tuscany-compliance-test-policy</artifactId>
+    <name>Apache Tuscany SCA Specification Compliance Tests Policy</name>
+
+    <dependencies>
+
+        <dependency>
+            <!-- This is only needed to get the module working in Eclipse which doesn't pick it up from the dependency plugin unpack -->
+            <!-- The dependency plugin unpack is needed as presently the surefire plugin wont run tests in a dependency jar -->
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>oasis-policy-test-runner</artifactId>
+            <version>1.0-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca.shades</groupId>
+            <artifactId>tuscany-base</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <!-- This is need for POL_4013 and POL_4028 when running with Sun JDK which 
+            gets an unsupported operation exception creating an XMLStreamReader from a DOMSource
+            when Tuscany is writing a property value  -->
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>wstx-asl</artifactId>
+            <version>3.2.4</version>
+            <scope>runtime</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>stax</groupId>
+                    <artifactId>stax-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.5</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+  <build>
+    <finalName>${artifactId}</finalName>
+    <plugins>
+                        
+      <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-surefire-plugin</artifactId>
+         <configuration>
+           <excludes>
+              <exclude>**/POL_3001_TestCase.java</exclude><!--  see TUSCANY-3370 -->
+              <exclude>**/POL_3002_TestCase.java</exclude><!--  see TUSCANY-3370 -->
+              <exclude>**/POL_4003_TestCase.java</exclude><!--  see TUSCANY-3488 -->
+              <exclude>**/POL_4028_TestCase.java</exclude><!--  see TUSCANY-xxxx - Passes in otest module -->
+              <!-- transaction intents -->
+              <exclude>**/POL_9006_TestCase.java</exclude><!--  see TUSCANY-3487-->
+              <exclude>**/POL_9009_TestCase.java</exclude><!--  see TUSCANY-3487-->
+              <exclude>**/POL_9015_TestCase.java</exclude><!--  see TUSCANY-3487-->
+              <exclude>**/POL_9016_TestCase.java</exclude><!--  see TUSCANY-3487-->
+              <exclude>**/POL_9017_TestCase.java</exclude><!--  see TUSCANY-3487-->
+              <exclude>**/POL_9018_TestCase.java</exclude><!--  see TUSCANY-3487-->
+              <!-- noListener intents -->
+              <exclude>**/POL_10001_TestCase.java</exclude><!--  see TUSCANY-3491-->
+              <exclude>**/POL_10002_TestCase.java</exclude><!--  see TUSCANY-3491-->
+
+              <exclude>**/POL_11001_TestCase.java</exclude><!--  see TUSCANY-xxxx -->
+           </excludes>
+         </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>unpack</id>
+            <phase>test-compile</phase>
+            <goals>
+              <goal>unpack</goal>
+            </goals>
+            <configuration>
+               <artifactItems>
+                 <artifactItem>
+                   <groupId>org.apache.tuscany.sca</groupId>
+                   <artifactId>oasis-policy-contributions</artifactId>
+                   <version>1.0-SNAPSHOT</version>
+                   <type>zip</type>
+                   <outputDirectory>${project.build.directory}/oasis-contributions</outputDirectory>
+                 </artifactItem>
+                 <artifactItem>
+                   <groupId>org.apache.tuscany.sca</groupId>
+                   <artifactId>oasis-policy-test-runner</artifactId>
+                   <version>1.0-SNAPSHOT</version>
+                   <type>jar</type>
+                   <excludes>commons-logging.properties,oasis-sca-tests.properties,tuscany-oasis-sca-tests-errors.properties</excludes>
+                   <outputDirectory>${project.build.directory}/test-classes</outputDirectory>
+                 </artifactItem>
+               </artifactItems>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+    </plugins>
+  </build>
+</project>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/compliance-tests/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/compliance-tests/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/compliance-tests/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/compliance-tests/pom.xml Thu May 27 15:53:32 2010
@@ -1,48 +1,48 @@
-<?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.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-sca</artifactId>
-        <version>2.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-
-    <packaging>pom</packaging>
-    <artifactId>tuscany-compliance-tests</artifactId>
-    <name>Apache Tuscany SCA Compliance Tests</name>
-
-    <repositories>
-        <repository>
-            <!-- OASIS will eventually publish these themselves but for now they're at my people place -->
-            <id>oasis.contributions</id>
-            <url>http://people.apache.org/~antelder/tuscany/otests/maven</url>
-        </repository>
-    </repositories>
-
-    <modules>
-       <module>assembly</module>
-       <module>policy</module>
-       <module>java-caa</module>
-       <module>java-ci</module>
-    </modules>
-
-</project>
+<?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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-sca</artifactId>
+        <version>2.0-M5-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <packaging>pom</packaging>
+    <artifactId>tuscany-compliance-tests</artifactId>
+    <name>Apache Tuscany SCA Compliance Tests</name>
+
+    <repositories>
+        <repository>
+            <!-- OASIS will eventually publish these themselves but for now they're at my people place -->
+            <id>oasis.contributions</id>
+            <url>http://people.apache.org/~antelder/tuscany/otests/maven</url>
+        </repository>
+    </repositories>
+
+    <modules>
+       <module>assembly</module>
+       <module>policy</module>
+       <module>java-caa</module>
+       <module>java-ci</module>
+    </modules>
+
+</project>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/all/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/all/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/all/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/all/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-distribution</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -35,37 +35,37 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-all</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-domain-node</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ejb-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-hazelcast-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jms-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-web-client</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
          <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-tracing-aspectj</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.aspectj</groupId>
@@ -76,12 +76,12 @@
         <dependency>
             <groupId>org.apache.tuscany.sca.shades</groupId>
             <artifactId>tuscany-base</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca.shades</groupId>
             <artifactId>tuscany-spring</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/pom.xml Thu May 27 15:53:32 2010
@@ -23,7 +23,7 @@
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
         <relativePath>../pom.xml</relativePath>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
     </parent>
     <groupId>org.apache.tuscany.sca</groupId>
     <artifactId>tuscany-distribution</artifactId>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/pom.xml Thu May 27 15:53:32 2010
@@ -23,7 +23,7 @@
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
         <relativePath>../pom.xml</relativePath>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
     </parent>
     <groupId>org.apache.tuscany.sca</groupId>
     <artifactId>tuscany-distribution-tomcat</artifactId>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/download-tomcat/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/download-tomcat/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/download-tomcat/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/download-tomcat/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-distribution-tomcat-testing</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-client-webapp/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-client-webapp/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-client-webapp/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-client-webapp/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-distribution-tomcat-testing</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -34,7 +34,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-reference-contribution/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-reference-contribution/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-reference-contribution/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-reference-contribution/pom.xml Thu May 27 15:53:32 2010
@@ -1,45 +1,45 @@
-<?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.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-distribution-tomcat-testing</artifactId>
-        <version>2.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-
-    <artifactId>helloworld-reference-contribution</artifactId>
-    <name>Apache Tuscany SCA Tomcat Integration Testing Helloworld Reference Contribution</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-sca-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
-            <scope>provided</scope>
-        </dependency>
-
-    </dependencies>
-
-    <build>
-       <finalName>${artifactId}</finalName>
-   </build>
-</project>
+<?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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-distribution-tomcat-testing</artifactId>
+        <version>2.0-M5-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>helloworld-reference-contribution</artifactId>
+    <name>Apache Tuscany SCA Tomcat Integration Testing Helloworld Reference Contribution</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-api</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+   </build>
+</project>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-scaclient-jsp/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-scaclient-jsp/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-scaclient-jsp/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-scaclient-jsp/pom.xml Thu May 27 15:53:32 2010
@@ -1,48 +1,48 @@
-<?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.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-distribution-tomcat-testing</artifactId>
-        <version>2.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-
-    <artifactId>helloworld-scaclient-jsp</artifactId>
-    <packaging>war</packaging>
-    <name>Apache Tuscany SCA Tomcat Integration Testing Helloworld Webapp Using SCAClient in a JSP</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-sca-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
-            <scope>provided</scope>
-        </dependency>
-    </dependencies>
-
-    <build>
-       <finalName>${artifactId}</finalName>
-   </build>
-
-</project>
-
-
+<?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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-distribution-tomcat-testing</artifactId>
+        <version>2.0-M5-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>helloworld-scaclient-jsp</artifactId>
+    <packaging>war</packaging>
+    <name>Apache Tuscany SCA Tomcat Integration Testing Helloworld Webapp Using SCAClient in a JSP</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-api</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+   </build>
+
+</project>
+
+

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-scaclient-servlet/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-scaclient-servlet/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-scaclient-servlet/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-scaclient-servlet/pom.xml Thu May 27 15:53:32 2010
@@ -1,53 +1,53 @@
-<?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.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-distribution-tomcat-testing</artifactId>
-        <version>2.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-
-    <artifactId>helloworld-scaclient-servlet</artifactId>
-    <packaging>war</packaging>
-    <name>Apache Tuscany SCA Tomcat Integration Testing Helloworld Webapp Using SCAClient in a Servlet</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-sca-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
-            <scope>provided</scope>
-        </dependency>
-    </dependencies>
-
-    <build>
-       <finalName>${artifactId}</finalName>
-   </build>
-
-</project>
-
+<?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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-distribution-tomcat-testing</artifactId>
+        <version>2.0-M5-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>helloworld-scaclient-servlet</artifactId>
+    <packaging>war</packaging>
+    <name>Apache Tuscany SCA Tomcat Integration Testing Helloworld Webapp Using SCAClient in a Servlet</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-api</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.5</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+   </build>
+
+</project>
+

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-service-contribution/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-service-contribution/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-service-contribution/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/helloworld-service-contribution/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-distribution-tomcat-testing</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -33,7 +33,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/legal-checks/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/legal-checks/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/legal-checks/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/legal-checks/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-distribution</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>war-legal-checks</artifactId>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/testing/pom.xml Thu May 27 15:53:32 2010
@@ -23,7 +23,7 @@
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-distribution-tomcat</artifactId>
         <relativePath>../pom.xml</relativePath>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
     </parent>
     <groupId>org.apache.tuscany.sca</groupId>
     <artifactId>tuscany-distribution-tomcat-testing</artifactId>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-hook/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-hook/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-hook/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-hook/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-servlet/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-servlet/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-servlet/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-servlet/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-modules</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -34,14 +34,14 @@
         <dependency>
            <groupId>org.apache.tuscany.sca</groupId>
            <artifactId>tuscany-tomcat-hook</artifactId>
-           <version>2.0-SNAPSHOT</version>
+           <version>2.0-M5-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
            <groupId>org.apache.tuscany.sca</groupId>
            <artifactId>tuscany-node-api</artifactId>
-           <version>2.0-SNAPSHOT</version>
+           <version>2.0-M5-SNAPSHOT</version>
            <scope>provided</scope>
         </dependency>
 

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-war/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-war/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-war/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/distribution/tomcat/tomcat-war/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-distribution</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -39,33 +39,33 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-tomcat-servlet</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-tomcat-hook</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca.shades</groupId>
             <artifactId>tuscany-base</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 <!--
         <dependency>
             <groupId>org.apache.tuscany.sca.shades</groupId>
             <artifactId>tuscany-webservices</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jsonp-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jms-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/all/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/all/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/all/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/all/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -36,75 +36,75 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-api</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-core</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-webservice</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-web20</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-ejava</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-osgi</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-sdo</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-webapp</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
        <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-process</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-launcher</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
        <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-tracing-aspectj</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/api/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/api/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/api/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/api/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -36,21 +36,21 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Data Collection API -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-data-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         
         <!-- Node API -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/binding-ws/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/binding-ws/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/binding-ws/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/binding-ws/pom.xml Thu May 27 15:53:32 2010
@@ -1,107 +1,107 @@
-<?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.    
--->
-<project>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.tuscany.sca</groupId>
-        <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-
-    <artifactId>tuscany-feature-binding-ws</artifactId>
-    <name>Apache Tuscany SCA binding.ws Feature</name>
-    <packaging>pom</packaging>
-
-    <dependencies>
-
-        <!-- Core distribution -->
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-feature-core</artifactId>
-            <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-
-        <!-- Bindings -->
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-ws</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
-            <version>2.0-SNAPSHOT</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.apache.ant</groupId>
-                    <artifactId>ant-nodeps</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.axis2</groupId>
-                    <artifactId>addressing</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.axis2</groupId>
-                    <artifactId>axis2-xmlbeans</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.axis2</groupId>
-                    <artifactId>axis2-adb-codegen</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>bouncycastle</groupId>
-                    <artifactId>bcprov-jdk15</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>opensaml</groupId>
-                    <artifactId>opensaml</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-ws-wsdlgen</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-
-        <!-- Databindings -->
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-databinding-axiom</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-databinding-jaxb-axiom</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-
-        <!-- Hosts -->
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-
-    </dependencies>
-
-</project>
+<?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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-feature</artifactId>
+        <version>2.0-M5-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>tuscany-feature-binding-ws</artifactId>
+    <name>Apache Tuscany SCA binding.ws Feature</name>
+    <packaging>pom</packaging>
+
+    <dependencies>
+
+        <!-- Core distribution -->
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-feature-core</artifactId>
+            <type>pom</type>
+            <version>2.0-M5-SNAPSHOT</version>
+        </dependency>
+
+        <!-- Bindings -->
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ws</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.ant</groupId>
+                    <artifactId>ant-nodeps</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>addressing</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>axis2-xmlbeans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>axis2-adb-codegen</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>bouncycastle</groupId>
+                    <artifactId>bcprov-jdk15</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>opensaml</groupId>
+                    <artifactId>opensaml</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ws-wsdlgen</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+        </dependency>
+
+        <!-- Databindings -->
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-databinding-axiom</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-databinding-jaxb-axiom</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+        </dependency>
+
+        <!-- Hosts -->
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-jetty</artifactId>
+            <version>2.0-M5-SNAPSHOT</version>
+        </dependency>
+
+    </dependencies>
+
+</project>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/core/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/core/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/core/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/core/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -35,7 +35,7 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-api</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- SCA API -->
@@ -43,13 +43,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 -->
 
@@ -57,145 +57,145 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xsd</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Bindings -->
         <!--dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-corba-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency-->
 
         <!-- Contribution model -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-contribution</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Core runtime -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Databindings -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-jaxb</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Data API -->
         <!--dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-data-api</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency-->
 
         <!-- Core Extensibility -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-extensibility</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-extensibility-equinox</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         
         <!--  Hosts -->
         <!--dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-corba-jse</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency-->
         <!-- host-http is required by tuscany-implementation-node-runtime -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Implementation types -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Interface models -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-jaxws</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-wsdl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Node runtime -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-client-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-launcher</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-launcher-equinox</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         
         <!--
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-launcher-webapp</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
             <type>war</type>
         </dependency>
         -->
@@ -204,26 +204,26 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-monitor</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         
         <!-- Policy models -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-security</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <!--dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-security-jsr250</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency-->
 
         <!-- XMLSchema support -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-xsd</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
     </dependencies>
 

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/ejava/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/ejava/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/ejava/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/ejava/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -37,55 +37,55 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-core</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Bindings -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-rmi-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 <!--
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ejb-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jms-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-corba-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Hosts -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-rmi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-corba-jee</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-corba-jse</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-corba-jse-tns</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
 
@@ -94,38 +94,38 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-ejb</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-spring</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-spring-sca</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- OSGi Remote Services SCA Configuration Type -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-osgi-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-contribution-osgi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl-osgi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
@@ -137,38 +137,38 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-script-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-jaxrs-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Policies -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-transaction</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-transaction-runtime-geronimo</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Hazelcast registry -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-endpoint-hazelcast</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-endpoint-hazelcast-client</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/osgi/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/osgi/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/osgi/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/osgi/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -37,14 +37,14 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-core</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Bindings -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-rmi-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
        <!-- WebService -->
@@ -52,14 +52,14 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-webservice</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Hosts -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-rmi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Implementations -->
@@ -68,19 +68,19 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-osgi-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-contribution-osgi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl-osgi</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
@@ -92,7 +92,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-endpoint-tribes</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Policies -->
@@ -100,7 +100,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-transaction</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 -->
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/pom.xml Thu May 27 15:53:32 2010
@@ -23,7 +23,7 @@
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
         <relativePath>../pom.xml</relativePath>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
     </parent>
     <groupId>org.apache.tuscany.sca</groupId>
     <artifactId>tuscany-feature</artifactId>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/process/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/process/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/process/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/process/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -37,19 +37,19 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-core</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- ODE BPEL -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-bpel</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-bpel-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/sdo/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/sdo/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/sdo/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/sdo/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -37,7 +37,7 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-core</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
 
@@ -45,12 +45,12 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-sdo</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-sdo-axiom</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
     </dependencies>

Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/web20/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/web20/pom.xml?rev=948871&r1=948870&r2=948871&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/web20/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/features/web20/pom.xml Thu May 27 15:53:32 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-feature</artifactId>
-        <version>2.0-SNAPSHOT</version>
+        <version>2.0-M5-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -35,111 +35,111 @@
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-api</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         <!-- Core distribution -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-feature-core</artifactId>
             <type>pom</type>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Common -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-common-http</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <!-- Interface models -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-jaxrs</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>		
 
         <!-- Implementation Types -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-widget-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-widget-runtime-dojo</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 		        
         <!-- Bindings -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-atom-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-atom-js-dojo</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-http-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-rest-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jsonp</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 		
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jsonrpc-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-jsonrpc-js-dojo</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-rss-runtime</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>                
 
         <!-- implementations -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-widget-runtime-dojo</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>                
 
         <!--Databindings -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-json</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
         
         <!-- Hosts -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <version>2.0-M5-SNAPSHOT</version>
         </dependency>
     </dependencies>
 </project>