You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2009/09/29 18:23:14 UTC

svn commit: r820013 [3/12] - in /tuscany/tags/java/sca/1.5.1-RC2: ./ demos/ demos/alert-aggregator-webapp/ demos/alert-aggregator-webapp/src/main/webapp/WEB-INF/ demos/bigbank-account/ demos/bigbank-calculator/ demos/bigbank-stockquote/ demos/bigbank/ ...

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/distro-license-check/src/test/java/itest/LicenseTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/distro-license-check/src/test/java/itest/LicenseTestCase.java?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/distro-license-check/src/test/java/itest/LicenseTestCase.java (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/distro-license-check/src/test/java/itest/LicenseTestCase.java Tue Sep 29 16:23:01 2009
@@ -1,160 +1,160 @@
-/*
- * 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.
- */
-package itest;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.io.StringReader;
-import java.util.ArrayList;
-import java.util.Enumeration;
-import java.util.List;
-import java.util.StringTokenizer;
-import java.util.zip.ZipEntry;
-import java.util.zip.ZipException;
-import java.util.zip.ZipFile;
-
-import junit.framework.TestCase;
-
-public class LicenseTestCase extends TestCase {
-
-    // TODO: turn this in to a maven plugin that can be run from the module that builds the archive
-    
-    public void testCreateComponent() throws ZipException, IOException {
-
-        File archive = new File("..\\..\\distribution\\target\\apache-tuscany-sca-1.5.1-SNAPSHOT.zip");
-        ZipFile zf = new ZipFile(archive);
-        try {
-
-            String licenstText = getLicenseText(zf);
-            List<String> jarsInArchive = getJarsInDistro(zf);
-
-            List<String> jarsNotInLicense = getJarsNotInLicense(licenstText, jarsInArchive);
-            if (jarsNotInLicense.size() > 0) {
-                System.out.println("jarsNotInLicense: " + jarsNotInLicense);
-            }
-
-            List<String> jarsNotInArchive = getJarsNotInArchive(licenstText, jarsInArchive);
-            if (jarsNotInArchive.size() > 0) {
-                System.out.println("jarsNotInArchive: " + jarsNotInArchive);
-            }
-            
-            assertTrue("License errors, check log for details", jarsNotInArchive.size()==0 && jarsNotInLicense.size()==0);
-
-        } finally {
-            zf.close();
-        }
-    }
-
-    private List<String> getJarsNotInLicense(String licenstText, List<String> jarsInArchive) {
-        List<String> jarsNotInLicense = new ArrayList<String>();
-        for (String jarName : jarsInArchive) {
-            if (!licenseHasJar(licenstText, jarName)) {
-                jarsNotInLicense.add(jarName);
-            }
-        }
-        return jarsNotInLicense;
-    }
-
-    private List<String> getJarsNotInArchive(String licenstText, List<String> jarsInArchive) throws IOException {
-        List<String> jarsNotInArchive = new ArrayList<String>();
-        BufferedReader reader = new BufferedReader(new StringReader(licenstText));
-        String line = null;
-        while ((line = reader.readLine()) != null) {
-            line = line.trim();
-            if (line.contains(".jar")) {
-                StringTokenizer st = new StringTokenizer(line);
-                while (st.hasMoreTokens()) {
-                    String s = st.nextToken();
-                    if (s.contains(".jar")) {
-                        if (s.startsWith("(")) {
-                            s = s.substring(1);
-                        }
-                        if (s.endsWith(",") || s.endsWith(":")) {
-                            s = s.substring(0, s.length()-1);
-                        }
-                        if (s.endsWith(")")) {
-                            s = s.substring(0, s.length()-1);
-                        }
-                        if (!jarsInArchive.contains(s) && !s.startsWith("tuscany-")) {
-                            jarsNotInArchive.add(s);
-                        }
-                    }
-                }
-            }
-        }
-        return jarsNotInArchive;
-    }
-
-    private boolean licenseHasJar(String licenstText, String jarName) {
-        // TODO: be good to make these configurable, maybe system props that can
-        // be configured in the pom.xml?
-        if (jarName.startsWith("tuscany-")) {
-            return true;
-        } else if (jarName.startsWith("demo-bigbank")) {
-            return true;
-        } else if (jarName.startsWith("tutorial-")) {
-            return true;
-        } else if (jarName.startsWith("sample-")) {
-            return true;
-        } else {
-            return licenstText.indexOf(jarName) > -1;
-        }
-    }
-
-    private String getLicenseText(ZipFile zf) throws IOException {
-        ZipEntry ze = zf.getEntry("tuscany-sca-1.5.1-SNAPSHOT/LICENSE");
-        InputStream in = zf.getInputStream(ze);
-        String l = readLICENSE(in);
-        return l;
-    }
-
-    private List<String> getJarsInDistro(ZipFile zf) {
-        ZipEntry ze;
-        List<String> jarsInArchive = new ArrayList<String>();
-        for (Enumeration<? extends ZipEntry> e = zf.entries(); e.hasMoreElements();) {
-            ze = e.nextElement();
-            String name = ze.getName();
-            if (name.endsWith(".jar")) {
-                if (name.lastIndexOf('/') > -1){
-                    name = name.substring(name.lastIndexOf('/')+1);
-                }
-                jarsInArchive.add(name);
-            }
-        }
-        System.out.println("jarsInArchive: " + jarsInArchive.size());
-        return jarsInArchive;
-    }
-
-    private static String readLICENSE(InputStream in) throws java.io.IOException {
-        StringBuffer fileData = new StringBuffer();
-        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
-        char[] buf = new char[16384];
-        int numRead = 0;
-        while ((numRead = reader.read(buf)) != -1) {
-            String readData = String.valueOf(buf, 0, numRead);
-            fileData.append(readData);
-            buf = new char[16384];
-        }
-        reader.close();
-        return fileData.toString();
-    }
-}
+/*
+ * 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.
+ */
+package itest;
+
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.StringReader;
+import java.util.ArrayList;
+import java.util.Enumeration;
+import java.util.List;
+import java.util.StringTokenizer;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipException;
+import java.util.zip.ZipFile;
+
+import junit.framework.TestCase;
+
+public class LicenseTestCase extends TestCase {
+
+    // TODO: turn this in to a maven plugin that can be run from the module that builds the archive
+    
+    public void testCreateComponent() throws ZipException, IOException {
+
+        File archive = new File("..\\..\\distribution\\target\\apache-tuscany-sca-1.5.1.zip");
+        ZipFile zf = new ZipFile(archive);
+        try {
+
+            String licenstText = getLicenseText(zf);
+            List<String> jarsInArchive = getJarsInDistro(zf);
+
+            List<String> jarsNotInLicense = getJarsNotInLicense(licenstText, jarsInArchive);
+            if (jarsNotInLicense.size() > 0) {
+                System.out.println("jarsNotInLicense: " + jarsNotInLicense);
+            }
+
+            List<String> jarsNotInArchive = getJarsNotInArchive(licenstText, jarsInArchive);
+            if (jarsNotInArchive.size() > 0) {
+                System.out.println("jarsNotInArchive: " + jarsNotInArchive);
+            }
+            
+            assertTrue("License errors, check log for details", jarsNotInArchive.size()==0 && jarsNotInLicense.size()==0);
+
+        } finally {
+            zf.close();
+        }
+    }
+
+    private List<String> getJarsNotInLicense(String licenstText, List<String> jarsInArchive) {
+        List<String> jarsNotInLicense = new ArrayList<String>();
+        for (String jarName : jarsInArchive) {
+            if (!licenseHasJar(licenstText, jarName)) {
+                jarsNotInLicense.add(jarName);
+            }
+        }
+        return jarsNotInLicense;
+    }
+
+    private List<String> getJarsNotInArchive(String licenstText, List<String> jarsInArchive) throws IOException {
+        List<String> jarsNotInArchive = new ArrayList<String>();
+        BufferedReader reader = new BufferedReader(new StringReader(licenstText));
+        String line = null;
+        while ((line = reader.readLine()) != null) {
+            line = line.trim();
+            if (line.contains(".jar")) {
+                StringTokenizer st = new StringTokenizer(line);
+                while (st.hasMoreTokens()) {
+                    String s = st.nextToken();
+                    if (s.contains(".jar")) {
+                        if (s.startsWith("(")) {
+                            s = s.substring(1);
+                        }
+                        if (s.endsWith(",") || s.endsWith(":")) {
+                            s = s.substring(0, s.length()-1);
+                        }
+                        if (s.endsWith(")")) {
+                            s = s.substring(0, s.length()-1);
+                        }
+                        if (!jarsInArchive.contains(s) && !s.startsWith("tuscany-")) {
+                            jarsNotInArchive.add(s);
+                        }
+                    }
+                }
+            }
+        }
+        return jarsNotInArchive;
+    }
+
+    private boolean licenseHasJar(String licenstText, String jarName) {
+        // TODO: be good to make these configurable, maybe system props that can
+        // be configured in the pom.xml?
+        if (jarName.startsWith("tuscany-")) {
+            return true;
+        } else if (jarName.startsWith("demo-bigbank")) {
+            return true;
+        } else if (jarName.startsWith("tutorial-")) {
+            return true;
+        } else if (jarName.startsWith("sample-")) {
+            return true;
+        } else {
+            return licenstText.indexOf(jarName) > -1;
+        }
+    }
+
+    private String getLicenseText(ZipFile zf) throws IOException {
+        ZipEntry ze = zf.getEntry("tuscany-sca-1.5.1/LICENSE");
+        InputStream in = zf.getInputStream(ze);
+        String l = readLICENSE(in);
+        return l;
+    }
+
+    private List<String> getJarsInDistro(ZipFile zf) {
+        ZipEntry ze;
+        List<String> jarsInArchive = new ArrayList<String>();
+        for (Enumeration<? extends ZipEntry> e = zf.entries(); e.hasMoreElements();) {
+            ze = e.nextElement();
+            String name = ze.getName();
+            if (name.endsWith(".jar")) {
+                if (name.lastIndexOf('/') > -1){
+                    name = name.substring(name.lastIndexOf('/')+1);
+                }
+                jarsInArchive.add(name);
+            }
+        }
+        System.out.println("jarsInArchive: " + jarsInArchive.size());
+        return jarsInArchive;
+    }
+
+    private static String readLICENSE(InputStream in) throws java.io.IOException {
+        StringBuffer fileData = new StringBuffer();
+        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
+        char[] buf = new char[16384];
+        int numRead = 0;
+        while ((numRead = reader.read(buf)) != -1) {
+            String readData = String.valueOf(buf, 0, numRead);
+            fileData.append(readData);
+            buf = new char[16384];
+        }
+        reader.close();
+        return fileData.toString();
+    }
+}

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domain/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domain/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domain/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domain/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domain</artifactId>
@@ -33,39 +33,39 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>    
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-launcher</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>    
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-workspace-impl</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency> 
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-node-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency> 
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-sca</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>                                        
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-sca-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>         
         
@@ -79,14 +79,14 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-monitor</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>            
         </dependency>        
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-tomcat</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency>   
         

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/client/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/client/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/client/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/client/pom.xml Tue Sep 29 16:23:01 2009
@@ -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>itest-domainmgr-basic</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <artifactId>itest-domainmgr-basic-client</artifactId>
-    <name>Apache Tuscany SCA iTest Domain Manager Basic Client Contribution</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>itest-domainmgr-basic-tours</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
-        </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>itest-domainmgr-basic</artifactId>
+        <version>1.5.1</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-domainmgr-basic-client</artifactId>
+    <name>Apache Tuscany SCA iTest Domain Manager Basic Client Contribution</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-api</artifactId>
+            <version>1.5.1</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>itest-domainmgr-basic-tours</artifactId>
+            <version>1.5.1</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+</project>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-basic</artifactId>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/runtest/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/runtest/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/runtest/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/runtest/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr-basic</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-basic-runtest</artifactId>
@@ -32,42 +32,42 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>itest-domainmgr-basic-trips</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>itest-domainmgr-basic-tours</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>itest-domainmgr-basic-client</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>provided</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-domain-manager</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency> 
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-sca-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/tours/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/tours/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/tours/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/tours/pom.xml Tue Sep 29 16:23:01 2009
@@ -1,42 +1,42 @@
-<?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>itest-domainmgr-basic</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <artifactId>itest-domainmgr-basic-tours</artifactId>
-    <name>Apache Tuscany SCA iTest Domain Manager Basic Tours Contribution</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
-        </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>itest-domainmgr-basic</artifactId>
+        <version>1.5.1</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-domainmgr-basic-tours</artifactId>
+    <name>Apache Tuscany SCA iTest Domain Manager Basic Tours Contribution</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-api</artifactId>
+            <version>1.5.1</version>
+        </dependency>        
+    </dependencies>
+
+    <build>
+        <finalName>${artifactId}</finalName>
+    </build>
+</project>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/trips/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/trips/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/trips/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/basic/trips/pom.xml Tue Sep 29 16:23:01 2009
@@ -1,42 +1,42 @@
-<?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>itest-domainmgr-basic</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <artifactId>itest-domainmgr-basic-trips</artifactId>
-    <name>Apache Tuscany SCA iTest Domain Manager Basic Trips Contribution</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
-        </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>itest-domainmgr-basic</artifactId>
+        <version>1.5.1</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-domainmgr-basic-trips</artifactId>
+    <name>Apache Tuscany SCA iTest Domain Manager Basic Trips Contribution</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-api</artifactId>
+            <version>1.5.1</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <finalName>${artifactId}</finalName>
+    </build>
+</project>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/client/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/client/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/client/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/client/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr-callback</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-callback-client</artifactId>
@@ -32,13 +32,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-callback</artifactId>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/runtest/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/runtest/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/runtest/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/runtest/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr-callback</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-callback-runtest</artifactId>
@@ -32,35 +32,35 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>itest-domainmgr-callback-service</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>itest-domainmgr-callback-client</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>provided</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-domain-manager</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency> 
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-sca-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/service/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/service/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/service/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/callback/service/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr-callback</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-callback-service</artifactId>
@@ -32,13 +32,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/payment/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/payment/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/payment/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/payment/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr-error</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-error-payment</artifactId>
@@ -32,7 +32,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
@@ -44,28 +44,28 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-security</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-transaction</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-error</artifactId>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/runtest/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/runtest/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/runtest/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/error/runtest/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr-error</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-error-runtest</artifactId>
@@ -32,42 +32,42 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>itest-domainmgr-error-payment</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>provided</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-security</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-transaction</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-domain-manager</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency> 
         

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/pom.xml Tue Sep 29 16:23:01 2009
@@ -1,44 +1,44 @@
-<?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>
-  <parent>
-      <groupId>org.apache.tuscany.sca</groupId>
-      <artifactId>tuscany-itest</artifactId>
-      <version>1.5.1-SNAPSHOT</version>
-      <relativePath>../pom.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>org.apache.tuscany.sca</groupId>
-  <artifactId>itest-domainmgr</artifactId>
-  <name>Apache Tuscany Domain Manager Integration Tests</name>
-  <version>1.5.1-SNAPSHOT</version>
-
-  <packaging>pom</packaging>
-  <build>
-    <defaultGoal>install</defaultGoal>
-  </build>
-  <modules>
-    <module>basic</module>
-    <module>transaction</module>
-    <module>error</module>
-    <module>callback</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>
+  <parent>
+      <groupId>org.apache.tuscany.sca</groupId>
+      <artifactId>tuscany-itest</artifactId>
+      <version>1.5.1</version>
+      <relativePath>../pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.tuscany.sca</groupId>
+  <artifactId>itest-domainmgr</artifactId>
+  <name>Apache Tuscany Domain Manager Integration Tests</name>
+  <version>1.5.1</version>
+
+  <packaging>pom</packaging>
+  <build>
+    <defaultGoal>install</defaultGoal>
+  </build>
+  <modules>
+    <module>basic</module>
+    <module>transaction</module>
+    <module>error</module>
+    <module>callback</module>
+  </modules>
+</project>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/payment/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/payment/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/payment/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/payment/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr-transaction</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-transaction-payment</artifactId>
@@ -32,7 +32,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
@@ -44,28 +44,28 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-security</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-transaction</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-transaction</artifactId>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/runtest/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/runtest/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/runtest/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/domainmgr/transaction/runtest/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>itest-domainmgr-transaction</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-domainmgr-transaction-runtest</artifactId>
@@ -32,42 +32,42 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>itest-domainmgr-transaction-payment</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>provided</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-security</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-transaction</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-domain-manager</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency> 
         

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-cross-binding-ws/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-cross-binding-ws/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-cross-binding-ws/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-cross-binding-ws/pom.xml Tue Sep 29 16:23:01 2009
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
@@ -65,55 +65,55 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-databinding</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-jaxb</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-sdo</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-axiom</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-xml</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -225,7 +225,7 @@
             <plugin>
                 <groupId>org.apache.tuscany.sca</groupId>
                 <artifactId>tuscany-maven-wsdl2java</artifactId>
-                <version>1.5.1-SNAPSHOT</version>
+                <version>1.5.1</version>
                 <executions>
                     <execution>
                         <configuration>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-cross-binding/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-cross-binding/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-cross-binding/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-cross-binding/pom.xml Tue Sep 29 16:23:01 2009
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
@@ -58,55 +58,55 @@
        <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-sca</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-databinding</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-jaxb</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-sdo</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-axiom</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-xml</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -217,7 +217,7 @@
             <plugin>
                 <groupId>org.apache.tuscany.sca</groupId>
                 <artifactId>tuscany-maven-wsdl2java</artifactId>
-                <version>1.5.1-SNAPSHOT</version>
+                <version>1.5.1</version>
                 <executions>
                     <execution>
                         <configuration>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-simple-ws/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-simple-ws/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-simple-ws/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions-simple-ws/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-exceptions-simple-ws</artifactId>
@@ -32,27 +32,27 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-tomcat</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
     </dependencies>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/exceptions/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-exceptions</artifactId>
@@ -32,13 +32,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
     </dependencies>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/extended-api/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/extended-api/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/extended-api/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/extended-api/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-extended-api</artifactId>
@@ -32,7 +32,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
@@ -41,7 +41,7 @@
             
             <artifactId>tuscany-implementation-java-runtime</artifactId>
             
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             
             <scope>runtime</scope>
         

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/http-jsonrpc/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/http-jsonrpc/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/http-jsonrpc/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/http-jsonrpc/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>itest-http-jsonrpc</artifactId>
@@ -39,52 +39,52 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>        
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency> 
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>         
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-http-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-http-jsonrpc-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
        <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-json</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>       
         
         <dependency>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/implementation-jee-external-ear/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/implementation-jee-external-ear/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/implementation-jee-external-ear/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/implementation-jee-external-ear/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>itest-implementation-jee-external-ear</artifactId>
@@ -33,39 +33,39 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-jee</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
  
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
  
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-contribution-jee</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
  
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-contribution-jee-impl</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope> 
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope> 
         </dependency>
 

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/interfaces/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/interfaces/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/interfaces/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/interfaces/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     <artifactId>itest-interfaces</artifactId>
@@ -32,13 +32,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-client/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-client/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-client/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-client/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.tuscany.sca</groupId>
 		<artifactId>tuscany-itest</artifactId>
-		<version>1.5.1-SNAPSHOT</version>
+		<version>1.5.1</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>itest-interop-soap-client</artifactId>
@@ -33,47 +33,47 @@
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-sca-api</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-host-embedded</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-implementation-java-runtime</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-interface-wsdl</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-binding-ws-axis2</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-databinding-sdo</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-databinding-axiom</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-host-jetty</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
@@ -107,7 +107,7 @@
 			<plugin>
 				<groupId>org.apache.tuscany.sca</groupId>
 				<artifactId>tuscany-maven-wsdl2java</artifactId>
-				<version>1.5.1-SNAPSHOT</version>
+				<version>1.5.1</version>
 				<executions>
 					<execution>
 						<configuration>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-round2-client/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-round2-client/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-round2-client/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-round2-client/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
 	<parent>
 		<groupId>org.apache.tuscany.sca</groupId>
 		<artifactId>tuscany-itest</artifactId>
-		<version>1.5.1-SNAPSHOT</version>
+		<version>1.5.1</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>itest-interop-soap-round2-client</artifactId>
@@ -32,47 +32,47 @@
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-sca-api</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-host-embedded</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-implementation-java-runtime</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-interface-wsdl</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-binding-ws-axis2</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-databinding-sdo</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-databinding-axiom</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-host-jetty</artifactId>
-			<version>1.5.1-SNAPSHOT</version>
+			<version>1.5.1</version>
 			<scope>runtime</scope>
 		</dependency>
 		<dependency>
@@ -106,7 +106,7 @@
 			<plugin>
 				<groupId>org.apache.tuscany.sca</groupId>
 				<artifactId>tuscany-maven-wsdl2java</artifactId>
-				<version>1.5.1-SNAPSHOT</version>
+				<version>1.5.1</version>
 				<executions>
 					<execution>
 						<configuration>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-service/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-service/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-service/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/interop-soap-service/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -34,27 +34,27 @@
        <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-tomcat</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
@@ -115,7 +115,7 @@
             <plugin>
 		<groupId>org.apache.tuscany.sca</groupId>
 		<artifactId>tuscany-maven-wsdl2java</artifactId>
-		<version>1.5.1-SNAPSHOT</version>
+		<version>1.5.1</version>
                 <executions>
                     <execution>
                         <configuration>

Modified: tuscany/tags/java/sca/1.5.1-RC2/itest/java-init-exceptions/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/tags/java/sca/1.5.1-RC2/itest/java-init-exceptions/pom.xml?rev=820013&r1=819887&r2=820013&view=diff
==============================================================================
--- tuscany/tags/java/sca/1.5.1-RC2/itest/java-init-exceptions/pom.xml (original)
+++ tuscany/tags/java/sca/1.5.1-RC2/itest/java-init-exceptions/pom.xml Tue Sep 29 16:23:01 2009
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-itest</artifactId>
-        <version>1.5.1-SNAPSHOT</version>
+        <version>1.5.1</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>itest-java-init-exceptions</artifactId>
@@ -33,20 +33,20 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
         </dependency>        
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency> 
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>runtime</scope>
         </dependency>
 
@@ -60,7 +60,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-node-impl</artifactId>
-            <version>1.5.1-SNAPSHOT</version>
+            <version>1.5.1</version>
             <scope>test</scope>
         </dependency>