You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ra...@apache.org on 2008/12/02 15:11:13 UTC

svn commit: r722462 [19/22] - in /tuscany/branches/sca-java-1.4: 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/ demo...

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-deep-webapp/build.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-deep-webapp/build.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-deep-webapp/build.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-deep-webapp/build.xml Tue Dec  2 06:10:40 2008
@@ -1,158 +1,158 @@
-<!--
- * 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 name="sample-helloworld-ws-service-webapp" default="package">
-    <property file="${user.home}/tuscany/build.properties" />
-    <property file="${user.home}/build.properties" />
-
-    <property name="tuscany.sca.manifest.location" value="../../lib/tuscany-sca-manifest.jar"/>
-    <property name="tuscany.sca.lib.location" value="../../lib"/>
-    <property name="tuscany.sca.modules.location" value="../../modules"/>
-            
-    <path id="project.classpath">
-        <pathelement path="target/classes"/>
-        <pathelement path="target/sdo-source"/>
-        <pathelement location="${tuscany.sca.manifest.location}"/>
-    </path>
-    	
-    <target name="init">
-        <mkdir dir="target/classes"/>
-        <mkdir dir="target/sdo-source"/>
-    </target>
-	
-    	
-    <target name="compile" depends="init">
-        <javac destdir="target/classes"
-               debug="on"
-               source="1.5"
-               target="1.5">
-               <src location="src/main/java"/>
-               <src location="target/sdo-source"/>
-               <classpath refid="project.classpath"/>
-        </javac> 
-        <copy todir="target/classes">
-            <fileset dir="src/main/resources"/>
-            <fileset dir="target/sdo-source"/>
-        </copy>
-    </target>	
-	
-    <target name="package" depends="compile">
-        <war destfile="target/sample-helloworld-ws-service-webapp.war" 
-             webxml="src/main/webapp/WEB-INF/web.xml">
-            <fileset dir="src/main/webapp"/>       	
-            <zipfileset dir="${tuscany.sca.modules.location}" prefix="WEB-INF/lib">
-            	<include name="sca-api-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-assembly-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-assembly-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-feed-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-jsonrpc-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-sca-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-sca-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-ws-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-ws-axis2-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-ws-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-contribution-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-contribution-impl-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-contribution-java-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-contribution-namespace-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-core-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-core-databinding-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-core-spi-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-databinding-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-databinding-axiom-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-databinding-jaxb-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-databinding-sdo-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-distributed-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-extension-helper-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-host-embedded-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-host-http-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-host-webapp-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-implementation-java-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-implementation-java-runtime-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-implementation-java-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-java-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-java-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-wsdl-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-wsdl-runtime-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-wsdl-xml-1.4-SNAPSHOT.jar"/>         	
-            	<include name="tuscany-policy-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-policy-xml-1.4-SNAPSHOT.jar"/>
-            </zipfileset>
-            <lib dir="${tuscany.sca.lib.location}">
-            	<include name="XmlSchema-1.3.1.jar"/>
-            	<include name="activation-1.1.jar"/>
-            	<include name="annogen-0.1.0.jar"/>
-            	<include name="ant-1.7.0.jar"/>
-            	<include name="ant-launcher-1.7.0.jar"/>
-            	<include name="axiom-api-1.2.4.jar"/>
-            	<include name="axiom-dom-1.2.4.jar"/>
-            	<include name="axiom-impl-1.2.4.jar"/>
-            	<include name="axis2-java2wsdl-1.2.jar"/>
-            	<include name="axis2-kernel-1.2.jar"/>
-            	<include name="backport-util-concurrent-2.2.jar"/>
-            	<include name="backport-util-concurrent-3.0.jar"/>
-            	<include name="cglib-nodep-2.1_3.jar"/>
-            	<include name="common-2.2.3.jar"/>
-            	<include name="commons-codec-1.3.jar"/>
-            	<include name="commons-fileupload-1.1.1.jar"/>
-            	<include name="commons-httpclient-3.1.jar"/>
-            	<include name="commons-io-1.1.jar"/>
-            	<include name="commons-logging-1.1.jar"/>
-            	<include name="ecore-2.2.3.jar"/>
-            	<include name="ecore-change-2.2.3.jar"/>
-            	<include name="ecore-xmi-2.2.3.jar"/>
-            	<include name="geronimo-commonj_1.1_spec-1.0.jar"/>
-            	<include name="geronimo-jms_1.1_spec-1.1.jar"/>
-            	<include name="jakarta-httpcore-4.0-alpha4.jar"/>
-            	<include name="jaxb-api-2.1.jar"/>
-            	<include name="jaxb-impl-2.1.4.jar"/>
-            	<include name="jaxen-1.1-beta-9.jar"/>
-            	<include name="jaxws-api-2.1.jar"/>
-            	<include name="jdom-1.0.jar"/>
-            	<include name="json-rpc-1.0.jar"/>
-            	<include name="jsr181-api-1.0-MR1.jar"/>
-            	<include name="jsr250-api-1.0.jar"/>
-            	<include name="mail-1.4.jar"/>
-            	<include name="neethi-2.0.1.jar"/>
-            	<include name="rome-0.9.jar"/>
-            	<include name="saaj-api-1.3.jar"/>
-            	<include name="sca-api-1.4-SNAPSHOT.jar"/>
-            	<include name="stax-api-1.0-2.jar"/>
-            	<include name="stax-api-1.0.1.jar"/>
-            	<include name="woden-1.0-incubating-M7a.jar"/>
-            	<include name="wsdl4j-1.6.2.jar"/>
-            	<include name="wstx-asl-3.2.1.jar"/>
-            	<include name="xercesImpl-2.8.1.jar"/>
-            	<include name="xml-apis-1.3.03.jar"/>
-            	<include name="xsd-2.2.3.jar"/>
-            	<include name="tuscany-sdo-api-r2.1-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-sdo-impl-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-sdo-lib-1.4-SNAPSHOT.jar"/>
-            </lib>        	
-            <classes dir="target/classes"/>
-            <classes dir="target/sdo-source"/>
-        </war>
-     </target>
-		
-    <target name="clean">
-        <delete quiet="true" includeemptydirs="true">
-            <fileset dir="target"/>
-        </delete>
-    </target>
-</project>
+<!--
+ * 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 name="sample-helloworld-ws-service-webapp" default="package">
+    <property file="${user.home}/tuscany/build.properties" />
+    <property file="${user.home}/build.properties" />
+
+    <property name="tuscany.sca.manifest.location" value="../../lib/tuscany-sca-manifest.jar"/>
+    <property name="tuscany.sca.lib.location" value="../../lib"/>
+    <property name="tuscany.sca.modules.location" value="../../modules"/>
+            
+    <path id="project.classpath">
+        <pathelement path="target/classes"/>
+        <pathelement path="target/sdo-source"/>
+        <pathelement location="${tuscany.sca.manifest.location}"/>
+    </path>
+    	
+    <target name="init">
+        <mkdir dir="target/classes"/>
+        <mkdir dir="target/sdo-source"/>
+    </target>
+	
+    	
+    <target name="compile" depends="init">
+        <javac destdir="target/classes"
+               debug="on"
+               source="1.5"
+               target="1.5">
+               <src location="src/main/java"/>
+               <src location="target/sdo-source"/>
+               <classpath refid="project.classpath"/>
+        </javac> 
+        <copy todir="target/classes">
+            <fileset dir="src/main/resources"/>
+            <fileset dir="target/sdo-source"/>
+        </copy>
+    </target>	
+	
+    <target name="package" depends="compile">
+        <war destfile="target/sample-helloworld-ws-service-webapp.war" 
+             webxml="src/main/webapp/WEB-INF/web.xml">
+            <fileset dir="src/main/webapp"/>       	
+            <zipfileset dir="${tuscany.sca.modules.location}" prefix="WEB-INF/lib">
+            	<include name="sca-api-1.4.jar"/>
+            	<include name="tuscany-assembly-1.4.jar"/>
+            	<include name="tuscany-assembly-xml-1.4.jar"/>
+            	<include name="tuscany-binding-feed-1.4.jar"/>
+            	<include name="tuscany-binding-jsonrpc-1.4.jar"/>
+            	<include name="tuscany-binding-sca-1.4.jar"/>
+            	<include name="tuscany-binding-sca-xml-1.4.jar"/>
+            	<include name="tuscany-binding-ws-1.4.jar"/>
+            	<include name="tuscany-binding-ws-axis2-1.4.jar"/>
+            	<include name="tuscany-binding-ws-xml-1.4.jar"/>
+            	<include name="tuscany-contribution-1.4.jar"/>
+            	<include name="tuscany-contribution-impl-1.4.jar"/>
+            	<include name="tuscany-contribution-java-1.4.jar"/>
+            	<include name="tuscany-contribution-namespace-1.4.jar"/>
+            	<include name="tuscany-core-1.4.jar"/>
+            	<include name="tuscany-core-databinding-1.4.jar"/>
+            	<include name="tuscany-core-spi-1.4.jar"/>
+            	<include name="tuscany-databinding-1.4.jar"/>
+            	<include name="tuscany-databinding-axiom-1.4.jar"/>
+            	<include name="tuscany-databinding-jaxb-1.4.jar"/>
+            	<include name="tuscany-databinding-sdo-1.4.jar"/>
+            	<include name="tuscany-distributed-1.4.jar"/>
+            	<include name="tuscany-extension-helper-1.4.jar"/>
+            	<include name="tuscany-host-embedded-1.4.jar"/>
+            	<include name="tuscany-host-http-1.4.jar"/>
+            	<include name="tuscany-host-webapp-1.4.jar"/>
+            	<include name="tuscany-implementation-java-1.4.jar"/>
+            	<include name="tuscany-implementation-java-runtime-1.4.jar"/>
+            	<include name="tuscany-implementation-java-xml-1.4.jar"/>
+            	<include name="tuscany-interface-1.4.jar"/>
+            	<include name="tuscany-interface-java-1.4.jar"/>
+            	<include name="tuscany-interface-java-xml-1.4.jar"/>
+            	<include name="tuscany-interface-wsdl-1.4.jar"/>
+            	<include name="tuscany-interface-wsdl-runtime-1.4.jar"/>
+            	<include name="tuscany-interface-wsdl-xml-1.4.jar"/>         	
+            	<include name="tuscany-policy-1.4.jar"/>
+            	<include name="tuscany-policy-xml-1.4.jar"/>
+            </zipfileset>
+            <lib dir="${tuscany.sca.lib.location}">
+            	<include name="XmlSchema-1.3.1.jar"/>
+            	<include name="activation-1.1.jar"/>
+            	<include name="annogen-0.1.0.jar"/>
+            	<include name="ant-1.7.0.jar"/>
+            	<include name="ant-launcher-1.7.0.jar"/>
+            	<include name="axiom-api-1.2.4.jar"/>
+            	<include name="axiom-dom-1.2.4.jar"/>
+            	<include name="axiom-impl-1.2.4.jar"/>
+            	<include name="axis2-java2wsdl-1.2.jar"/>
+            	<include name="axis2-kernel-1.2.jar"/>
+            	<include name="backport-util-concurrent-2.2.jar"/>
+            	<include name="backport-util-concurrent-3.0.jar"/>
+            	<include name="cglib-nodep-2.1_3.jar"/>
+            	<include name="common-2.2.3.jar"/>
+            	<include name="commons-codec-1.3.jar"/>
+            	<include name="commons-fileupload-1.1.1.jar"/>
+            	<include name="commons-httpclient-3.1.jar"/>
+            	<include name="commons-io-1.1.jar"/>
+            	<include name="commons-logging-1.1.jar"/>
+            	<include name="ecore-2.2.3.jar"/>
+            	<include name="ecore-change-2.2.3.jar"/>
+            	<include name="ecore-xmi-2.2.3.jar"/>
+            	<include name="geronimo-commonj_1.1_spec-1.0.jar"/>
+            	<include name="geronimo-jms_1.1_spec-1.1.jar"/>
+            	<include name="jakarta-httpcore-4.0-alpha4.jar"/>
+            	<include name="jaxb-api-2.1.jar"/>
+            	<include name="jaxb-impl-2.1.4.jar"/>
+            	<include name="jaxen-1.1-beta-9.jar"/>
+            	<include name="jaxws-api-2.1.jar"/>
+            	<include name="jdom-1.0.jar"/>
+            	<include name="json-rpc-1.0.jar"/>
+            	<include name="jsr181-api-1.0-MR1.jar"/>
+            	<include name="jsr250-api-1.0.jar"/>
+            	<include name="mail-1.4.jar"/>
+            	<include name="neethi-2.0.1.jar"/>
+            	<include name="rome-0.9.jar"/>
+            	<include name="saaj-api-1.3.jar"/>
+            	<include name="sca-api-1.4.jar"/>
+            	<include name="stax-api-1.0-2.jar"/>
+            	<include name="stax-api-1.0.1.jar"/>
+            	<include name="woden-1.0-incubating-M7a.jar"/>
+            	<include name="wsdl4j-1.6.2.jar"/>
+            	<include name="wstx-asl-3.2.1.jar"/>
+            	<include name="xercesImpl-2.8.1.jar"/>
+            	<include name="xml-apis-1.3.03.jar"/>
+            	<include name="xsd-2.2.3.jar"/>
+            	<include name="tuscany-sdo-api-r2.1-1.4.jar"/>
+            	<include name="tuscany-sdo-impl-1.4.jar"/>
+            	<include name="tuscany-sdo-lib-1.4.jar"/>
+            </lib>        	
+            <classes dir="target/classes"/>
+            <classes dir="target/sdo-source"/>
+        </war>
+     </target>
+		
+    <target name="clean">
+        <delete quiet="true" includeemptydirs="true">
+            <fileset dir="target"/>
+        </delete>
+    </target>
+</project>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-deep-webapp/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-deep-webapp/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-deep-webapp/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-deep-webapp/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
     </parent>
 
     <artifactId>sample-helloworld-ws-service-webapp</artifactId>
@@ -33,7 +33,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-sca-api</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>provided</scope>
         </dependency>
     </dependencies>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-helloworld-ws-reference-jms</artifactId>
@@ -39,27 +39,27 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>sample-helloworld-ws-service-jms</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>test</scope>
         </dependency>
         

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-lean/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-lean/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-lean/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-lean/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-helloworld-ws-reference-lean</artifactId>
@@ -39,27 +39,27 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>sample-helloworld-ws-service</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>test</scope>
         </dependency>
         

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-secure/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-secure/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-secure/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-secure/pom.xml Tue Dec  2 06:10:40 2008
@@ -1,85 +1,85 @@
-<?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>1.4-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
-    </parent>
-    <artifactId>sample-helloworld-ws-reference-secure</artifactId>
-    <name>Apache Tuscany SCA Sample HelloWorld Secure Web Service Reference</name>
-
-    <repositories>
-       <repository>
-          <id>apache.incubator</id>
-          <url>http://people.apache.org/repo/m2-incubating-repository</url>
-       </repository>
-    </repositories>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.apache.ws.security</groupId>
-            <artifactId>wss4j</artifactId>
-            <version>1.5.3</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>sample-helloworld-ws-service-secure</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>
-        
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.5</version>
-            <scope>test</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-sca</artifactId>
+        <version>1.4</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>sample-helloworld-ws-reference-secure</artifactId>
+    <name>Apache Tuscany SCA Sample HelloWorld Secure Web Service Reference</name>
+
+    <repositories>
+       <repository>
+          <id>apache.incubator</id>
+          <url>http://people.apache.org/repo/m2-incubating-repository</url>
+       </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>1.4</version>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.ws.security</groupId>
+            <artifactId>wss4j</artifactId>
+            <version>1.5.3</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ws-axis2</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>sample-helloworld-ws-service-secure</artifactId>
+            <version>1.4</version>
+            <scope>test</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.5</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+    
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+
+</project>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-helloworld-ws-reference</artifactId>
@@ -39,27 +39,27 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>sample-helloworld-ws-service</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>test</scope>
         </dependency>
         

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo-webapp/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo-webapp/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo-webapp/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo-webapp/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-helloworld-ws-sdo-webapp</artifactId>
@@ -40,27 +40,27 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-webapp</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
     
         <dependency>
@@ -92,7 +92,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-sdo</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>compile</scope>
         </dependency>
 
@@ -101,7 +101,7 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-tomcat</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 -->        
@@ -193,7 +193,7 @@
             <plugin>
                 <groupId>org.apache.tuscany.sca</groupId>
                 <artifactId>tuscany-maven-ant-generator</artifactId>
-                <version>1.4-SNAPSHOT</version>
+                <version>1.4</version>
                 <executions>
                     <execution>
                         <configuration>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo-webapp/src/main/webapp/WEB-INF/geronimo-web.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo-webapp/src/main/webapp/WEB-INF/geronimo-web.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo-webapp/src/main/webapp/WEB-INF/geronimo-web.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo-webapp/src/main/webapp/WEB-INF/geronimo-web.xml Tue Dec  2 06:10:40 2008
@@ -24,7 +24,7 @@
         <d:moduleId>
             <d:groupId>org.apache.tuscany.sca</d:groupId>
             <d:artifactId>sample-helloworld-ws-sdo-webapp</d:artifactId>
-            <d:version>1.4-SNAPSHOT</d:version>
+            <d:version>1.4</d:version>
             <d:type>war</d:type>
         </d:moduleId>
         <!-- Using the shared library -->

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-sdo/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-helloworld-ws-sdo</artifactId>
@@ -39,20 +39,20 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
@@ -80,14 +80,14 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-databinding-sdo</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>compile</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-tomcat</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
         

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml Tue Dec  2 06:10:40 2008
@@ -1,92 +1,92 @@
-<?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>1.4-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
-    </parent>
-    <artifactId>sample-helloworld-ws-service-jms</artifactId>
-    <name>Apache Tuscany SCA Sample HelloWorld Web Service JMS</name>
-
-    <repositories>
-       <repository>
-          <id>apache.incubator</id>
-          <url>http://people.apache.org/repo/m2-incubating-repository</url>
-       </repository>
-    </repositories>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-jetty</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>compile</scope>            
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>compile</scope>            
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.activemq</groupId>
-            <artifactId>activemq-core</artifactId>
-            <version>4.1.1</version>
-            <scope>compile</scope>            
-        </dependency>
-        <dependency>
-            <groupId>backport-util-concurrent</groupId>
-            <artifactId>backport-util-concurrent</artifactId>
-            <version>3.1</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>    
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.5</version>
-            <scope>test</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-sca</artifactId>
+        <version>1.4</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>sample-helloworld-ws-service-jms</artifactId>
+    <name>Apache Tuscany SCA Sample HelloWorld Web Service JMS</name>
+
+    <repositories>
+       <repository>
+          <id>apache.incubator</id>
+          <url>http://people.apache.org/repo/m2-incubating-repository</url>
+       </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-jetty</artifactId>
+            <version>1.4</version>
+            <scope>compile</scope>            
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>1.4</version>
+            <scope>compile</scope>            
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-core</artifactId>
+            <version>4.1.1</version>
+            <scope>compile</scope>            
+        </dependency>
+        <dependency>
+            <groupId>backport-util-concurrent</groupId>
+            <artifactId>backport-util-concurrent</artifactId>
+            <version>3.1</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ws-axis2</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>    
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.5</version>
+            <scope>test</scope>
+        </dependency>
+       
+    </dependencies>
+    
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+
+</project>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-secure/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-secure/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-secure/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-secure/pom.xml Tue Dec  2 06:10:40 2008
@@ -1,85 +1,85 @@
-<?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>1.4-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
-    </parent>
-    <artifactId>sample-helloworld-ws-service-secure</artifactId>
-    <name>Apache Tuscany SCA Sample HelloWorld Secure Web Service</name>
-
-    <repositories>
-       <repository>
-          <id>apache.incubator</id>
-          <url>http://people.apache.org/repo/m2-incubating-repository</url>
-       </repository>
-    </repositories>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.apache.ws.security</groupId>
-            <artifactId>wss4j</artifactId>
-            <version>1.5.3</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-tomcat</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.5</version>
-            <scope>test</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-sca</artifactId>
+        <version>1.4</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>sample-helloworld-ws-service-secure</artifactId>
+    <name>Apache Tuscany SCA Sample HelloWorld Secure Web Service</name>
+
+    <repositories>
+       <repository>
+          <id>apache.incubator</id>
+          <url>http://people.apache.org/repo/m2-incubating-repository</url>
+       </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>1.4</version>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.ws.security</groupId>
+            <artifactId>wss4j</artifactId>
+            <version>1.5.3</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ws-axis2</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-tomcat</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.5</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+    
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+
+</project>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/build.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/build.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/build.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/build.xml Tue Dec  2 06:10:40 2008
@@ -1,157 +1,157 @@
-<!--
- * 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 name="sample-helloworld-ws-service-webapp" default="compile">
-    <property file="${user.home}/tuscany/build.properties" />
-    <property file="${user.home}/build.properties" />
-
-    <property name="tuscany.sca.manifest.location" value="../../lib/tuscany-sca-manifest.jar"/>
-    <property name="tuscany.sca.lib.location" value="../../lib"/>
-    <property name="tuscany.sca.modules.location" value="../../modules"/>
-            
-    <path id="project.classpath">
-        <pathelement path="target/classes"/>
-        <pathelement path="target/sdo-source"/>
-        <pathelement location="${tuscany.sca.manifest.location}"/>
-    </path>
-    	
-    <target name="init">
-        <mkdir dir="target/classes"/>
-        <mkdir dir="target/sdo-source"/>
-    </target>
-	
-    	
-    <target name="compile" depends="init">
-        <javac destdir="target/classes"
-               debug="on"
-               source="1.5"
-               target="1.5">
-               <src location="src/main/java"/>
-               <src location="target/sdo-source"/>
-               <classpath refid="project.classpath"/>
-        </javac> 
-        <copy todir="target/classes">
-            <fileset dir="src/main/resources"/>
-            <fileset dir="target/sdo-source"/>
-        </copy>
-        <war destfile="target/sample-helloworld-ws-service-webapp.war" 
-             webxml="src/main/webapp/WEB-INF/web.xml">
-            <fileset dir="src/main/webapp"/>       	
-            <zipfileset dir="${tuscany.sca.modules.location}" prefix="WEB-INF/lib">
-            	<include name="sca-api-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-assembly-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-assembly-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-feed-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-jsonrpc-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-sca-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-sca-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-ws-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-ws-axis2-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-binding-ws-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-contribution-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-contribution-impl-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-contribution-java-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-contribution-namespace-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-core-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-core-databinding-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-core-spi-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-databinding-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-databinding-axiom-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-databinding-jaxb-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-databinding-sdo-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-distributed-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-extension-helper-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-host-embedded-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-host-http-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-host-webapp-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-implementation-java-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-implementation-java-runtime-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-implementation-java-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-java-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-java-xml-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-wsdl-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-wsdl-runtime-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-interface-wsdl-xml-1.4-SNAPSHOT.jar"/>         	
-            	<include name="tuscany-policy-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-policy-xml-1.4-SNAPSHOT.jar"/>
-            </zipfileset>
-            <lib dir="${tuscany.sca.lib.location}">
-            	<include name="XmlSchema-1.3.1.jar"/>
-            	<include name="activation-1.1.jar"/>
-            	<include name="annogen-0.1.0.jar"/>
-            	<include name="ant-1.7.0.jar"/>
-            	<include name="ant-launcher-1.7.0.jar"/>
-            	<include name="axiom-api-1.2.4.jar"/>
-            	<include name="axiom-dom-1.2.4.jar"/>
-            	<include name="axiom-impl-1.2.4.jar"/>
-            	<include name="axis2-java2wsdl-1.2.jar"/>
-            	<include name="axis2-kernel-1.2.jar"/>
-            	<include name="backport-util-concurrent-2.2.jar"/>
-            	<include name="backport-util-concurrent-3.0.jar"/>
-            	<include name="cglib-nodep-2.1_3.jar"/>
-            	<include name="common-2.2.3.jar"/>
-            	<include name="commons-codec-1.3.jar"/>
-            	<include name="commons-fileupload-1.1.1.jar"/>
-            	<include name="commons-httpclient-3.1.jar"/>
-            	<include name="commons-io-1.1.jar"/>
-            	<include name="commons-logging-1.1.jar"/>
-            	<include name="ecore-2.2.3.jar"/>
-            	<include name="ecore-change-2.2.3.jar"/>
-            	<include name="ecore-xmi-2.2.3.jar"/>
-            	<include name="geronimo-commonj_1.1_spec-1.0.jar"/>
-            	<include name="geronimo-jms_1.1_spec-1.1.jar"/>
-            	<include name="jakarta-httpcore-4.0-alpha4.jar"/>
-            	<include name="jaxb-api-2.1.jar"/>
-            	<include name="jaxb-impl-2.1.4.jar"/>
-            	<include name="jaxen-1.1-beta-9.jar"/>
-            	<include name="jaxws-api-2.1.jar"/>
-            	<include name="jdom-1.0.jar"/>
-            	<include name="json-rpc-1.0.jar"/>
-            	<include name="jsr181-api-1.0-MR1.jar"/>
-            	<include name="jsr250-api-1.0.jar"/>
-            	<include name="mail-1.4.jar"/>
-            	<include name="neethi-2.0.1.jar"/>
-            	<include name="rome-0.9.jar"/>
-            	<include name="saaj-api-1.3.jar"/>
-            	<include name="sca-api-1.4-SNAPSHOT.jar"/>
-            	<include name="stax-api-1.0-2.jar"/>
-            	<include name="stax-api-1.0.1.jar"/>
-            	<include name="woden-1.0-incubating-M7a.jar"/>
-            	<include name="wsdl4j-1.6.2.jar"/>
-            	<include name="wstx-asl-3.2.1.jar"/>
-            	<include name="xercesImpl-2.8.1.jar"/>
-            	<include name="xml-apis-1.3.03.jar"/>
-            	<include name="xsd-2.2.3.jar"/>
-            	<include name="tuscany-sdo-api-r2.1-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-sdo-impl-1.4-SNAPSHOT.jar"/>
-            	<include name="tuscany-sdo-lib-1.4-SNAPSHOT.jar"/>
-            </lib>        	
-            <classes dir="target/classes"/>
-            <classes dir="target/sdo-source"/>
-        </war>
-    </target>	
-	
-    <target name="package" depends="compile"/>
-		
-    <target name="clean">
-        <delete quiet="true" includeemptydirs="true">
-            <fileset dir="target"/>
-        </delete>
-    </target>
-</project>
+<!--
+ * 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 name="sample-helloworld-ws-service-webapp" default="compile">
+    <property file="${user.home}/tuscany/build.properties" />
+    <property file="${user.home}/build.properties" />
+
+    <property name="tuscany.sca.manifest.location" value="../../lib/tuscany-sca-manifest.jar"/>
+    <property name="tuscany.sca.lib.location" value="../../lib"/>
+    <property name="tuscany.sca.modules.location" value="../../modules"/>
+            
+    <path id="project.classpath">
+        <pathelement path="target/classes"/>
+        <pathelement path="target/sdo-source"/>
+        <pathelement location="${tuscany.sca.manifest.location}"/>
+    </path>
+    	
+    <target name="init">
+        <mkdir dir="target/classes"/>
+        <mkdir dir="target/sdo-source"/>
+    </target>
+	
+    	
+    <target name="compile" depends="init">
+        <javac destdir="target/classes"
+               debug="on"
+               source="1.5"
+               target="1.5">
+               <src location="src/main/java"/>
+               <src location="target/sdo-source"/>
+               <classpath refid="project.classpath"/>
+        </javac> 
+        <copy todir="target/classes">
+            <fileset dir="src/main/resources"/>
+            <fileset dir="target/sdo-source"/>
+        </copy>
+        <war destfile="target/sample-helloworld-ws-service-webapp.war" 
+             webxml="src/main/webapp/WEB-INF/web.xml">
+            <fileset dir="src/main/webapp"/>       	
+            <zipfileset dir="${tuscany.sca.modules.location}" prefix="WEB-INF/lib">
+            	<include name="sca-api-1.4.jar"/>
+            	<include name="tuscany-assembly-1.4.jar"/>
+            	<include name="tuscany-assembly-xml-1.4.jar"/>
+            	<include name="tuscany-binding-feed-1.4.jar"/>
+            	<include name="tuscany-binding-jsonrpc-1.4.jar"/>
+            	<include name="tuscany-binding-sca-1.4.jar"/>
+            	<include name="tuscany-binding-sca-xml-1.4.jar"/>
+            	<include name="tuscany-binding-ws-1.4.jar"/>
+            	<include name="tuscany-binding-ws-axis2-1.4.jar"/>
+            	<include name="tuscany-binding-ws-xml-1.4.jar"/>
+            	<include name="tuscany-contribution-1.4.jar"/>
+            	<include name="tuscany-contribution-impl-1.4.jar"/>
+            	<include name="tuscany-contribution-java-1.4.jar"/>
+            	<include name="tuscany-contribution-namespace-1.4.jar"/>
+            	<include name="tuscany-core-1.4.jar"/>
+            	<include name="tuscany-core-databinding-1.4.jar"/>
+            	<include name="tuscany-core-spi-1.4.jar"/>
+            	<include name="tuscany-databinding-1.4.jar"/>
+            	<include name="tuscany-databinding-axiom-1.4.jar"/>
+            	<include name="tuscany-databinding-jaxb-1.4.jar"/>
+            	<include name="tuscany-databinding-sdo-1.4.jar"/>
+            	<include name="tuscany-distributed-1.4.jar"/>
+            	<include name="tuscany-extension-helper-1.4.jar"/>
+            	<include name="tuscany-host-embedded-1.4.jar"/>
+            	<include name="tuscany-host-http-1.4.jar"/>
+            	<include name="tuscany-host-webapp-1.4.jar"/>
+            	<include name="tuscany-implementation-java-1.4.jar"/>
+            	<include name="tuscany-implementation-java-runtime-1.4.jar"/>
+            	<include name="tuscany-implementation-java-xml-1.4.jar"/>
+            	<include name="tuscany-interface-1.4.jar"/>
+            	<include name="tuscany-interface-java-1.4.jar"/>
+            	<include name="tuscany-interface-java-xml-1.4.jar"/>
+            	<include name="tuscany-interface-wsdl-1.4.jar"/>
+            	<include name="tuscany-interface-wsdl-runtime-1.4.jar"/>
+            	<include name="tuscany-interface-wsdl-xml-1.4.jar"/>         	
+            	<include name="tuscany-policy-1.4.jar"/>
+            	<include name="tuscany-policy-xml-1.4.jar"/>
+            </zipfileset>
+            <lib dir="${tuscany.sca.lib.location}">
+            	<include name="XmlSchema-1.3.1.jar"/>
+            	<include name="activation-1.1.jar"/>
+            	<include name="annogen-0.1.0.jar"/>
+            	<include name="ant-1.7.0.jar"/>
+            	<include name="ant-launcher-1.7.0.jar"/>
+            	<include name="axiom-api-1.2.4.jar"/>
+            	<include name="axiom-dom-1.2.4.jar"/>
+            	<include name="axiom-impl-1.2.4.jar"/>
+            	<include name="axis2-java2wsdl-1.2.jar"/>
+            	<include name="axis2-kernel-1.2.jar"/>
+            	<include name="backport-util-concurrent-2.2.jar"/>
+            	<include name="backport-util-concurrent-3.0.jar"/>
+            	<include name="cglib-nodep-2.1_3.jar"/>
+            	<include name="common-2.2.3.jar"/>
+            	<include name="commons-codec-1.3.jar"/>
+            	<include name="commons-fileupload-1.1.1.jar"/>
+            	<include name="commons-httpclient-3.1.jar"/>
+            	<include name="commons-io-1.1.jar"/>
+            	<include name="commons-logging-1.1.jar"/>
+            	<include name="ecore-2.2.3.jar"/>
+            	<include name="ecore-change-2.2.3.jar"/>
+            	<include name="ecore-xmi-2.2.3.jar"/>
+            	<include name="geronimo-commonj_1.1_spec-1.0.jar"/>
+            	<include name="geronimo-jms_1.1_spec-1.1.jar"/>
+            	<include name="jakarta-httpcore-4.0-alpha4.jar"/>
+            	<include name="jaxb-api-2.1.jar"/>
+            	<include name="jaxb-impl-2.1.4.jar"/>
+            	<include name="jaxen-1.1-beta-9.jar"/>
+            	<include name="jaxws-api-2.1.jar"/>
+            	<include name="jdom-1.0.jar"/>
+            	<include name="json-rpc-1.0.jar"/>
+            	<include name="jsr181-api-1.0-MR1.jar"/>
+            	<include name="jsr250-api-1.0.jar"/>
+            	<include name="mail-1.4.jar"/>
+            	<include name="neethi-2.0.1.jar"/>
+            	<include name="rome-0.9.jar"/>
+            	<include name="saaj-api-1.3.jar"/>
+            	<include name="sca-api-1.4.jar"/>
+            	<include name="stax-api-1.0-2.jar"/>
+            	<include name="stax-api-1.0.1.jar"/>
+            	<include name="woden-1.0-incubating-M7a.jar"/>
+            	<include name="wsdl4j-1.6.2.jar"/>
+            	<include name="wstx-asl-3.2.1.jar"/>
+            	<include name="xercesImpl-2.8.1.jar"/>
+            	<include name="xml-apis-1.3.03.jar"/>
+            	<include name="xsd-2.2.3.jar"/>
+            	<include name="tuscany-sdo-api-r2.1-1.4.jar"/>
+            	<include name="tuscany-sdo-impl-1.4.jar"/>
+            	<include name="tuscany-sdo-lib-1.4.jar"/>
+            </lib>        	
+            <classes dir="target/classes"/>
+            <classes dir="target/sdo-source"/>
+        </war>
+    </target>	
+	
+    <target name="package" depends="compile"/>
+		
+    <target name="clean">
+        <delete quiet="true" includeemptydirs="true">
+            <fileset dir="target"/>
+        </delete>
+    </target>
+</project>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
     </parent>
     <artifactId>sample-helloworld-ws-service-webapp</artifactId>
     <name>Apache Tuscany SCA HelloWorld Web Service Sample Webapp</name>
@@ -39,20 +39,20 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-webapp</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
         

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/geronimo-web.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/geronimo-web.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/geronimo-web.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-webapp/src/main/webapp/WEB-INF/geronimo-web.xml Tue Dec  2 06:10:40 2008
@@ -24,7 +24,7 @@
         <d:moduleId>
             <d:groupId>org.apache.tuscany.sca</d:groupId>
             <d:artifactId>sample-helloworld-ws-service-webapp</d:artifactId>
-            <d:version>1.4-SNAPSHOT</d:version>
+            <d:version>1.4</d:version>
             <d:type>war</d:type>
         </d:moduleId>
         <!-- TUSCANY-1986 -->

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-service/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-service/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-service/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-service/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-helloworld-ws-service</artifactId>
@@ -39,28 +39,28 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>compile</scope>            
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-tomcat</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>    
 

Modified: tuscany/branches/sca-java-1.4/samples/implementation-composite/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/implementation-composite/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/implementation-composite/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/implementation-composite/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-implementation-composite</artifactId>
@@ -40,20 +40,20 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>runtime</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>        
 
         <dependency>

Modified: tuscany/branches/sca-java-1.4/samples/implementation-crud-extension/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/implementation-crud-extension/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/implementation-crud-extension/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/implementation-crud-extension/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-implementation-crud-extension</artifactId>
@@ -39,25 +39,25 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-xml</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>        
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>        
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/branches/sca-java-1.4/samples/implementation-crud/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/implementation-crud/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/implementation-crud/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/implementation-crud/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-implementation-crud</artifactId>
@@ -39,13 +39,13 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>sample-implementation-crud-extension</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>        
 
         <dependency>

Modified: tuscany/branches/sca-java-1.4/samples/implementation-notification/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/implementation-notification/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/implementation-notification/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/implementation-notification/pom.xml Tue Dec  2 06:10:40 2008
@@ -1,76 +1,76 @@
-<?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>1.4-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
-    </parent>
-    <artifactId>sample-implementation-notification</artifactId>
-    <name>Apache Tuscany SCA Sample Notification Implementation</name>
-    <version>1.4-SNAPSHOT</version>
-    <description>A sample illustrating use of implementation.notification</description>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-notification</artifactId>
-            <version>1.4-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
-        </dependency>
-        <!-- if this is not in, BuilderRegistryImpl throws NPE (line 96) -->
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>
-        <!-- end -->
-		        
-        <!-- test dependencies -->
-        <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-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>
-        </plugins>
-        <defaultGoal>install</defaultGoal>
-    </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-sca</artifactId>
+        <version>1.4</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>sample-implementation-notification</artifactId>
+    <name>Apache Tuscany SCA Sample Notification Implementation</name>
+    <version>1.4</version>
+    <description>A sample illustrating use of implementation.notification</description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-notification</artifactId>
+            <version>1.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>1.4</version>
+        </dependency>
+        <!-- if this is not in, BuilderRegistryImpl throws NPE (line 96) -->
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.4</version>
+            <scope>test</scope>
+        </dependency>
+        <!-- end -->
+		        
+        <!-- test dependencies -->
+        <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-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+        </plugins>
+        <defaultGoal>install</defaultGoal>
+    </build>
+</project>

Modified: tuscany/branches/sca-java-1.4/samples/implementation-pojo-extension/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/implementation-pojo-extension/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/implementation-pojo-extension/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/implementation-pojo-extension/pom.xml Tue Dec  2 06:10:40 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.tuscany.sca</groupId>
         <artifactId>tuscany-sca</artifactId>
-        <version>1.4-SNAPSHOT</version>
+        <version>1.4</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
     <artifactId>sample-implementation-pojo-extension</artifactId>
@@ -39,25 +39,25 @@
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-assembly-xml</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-interface-java-xml</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>        
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-core-spi</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>        
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
+            <version>1.4</version>
             <scope>test</scope>
         </dependency>
 

Modified: tuscany/branches/sca-java-1.4/samples/loanapplication/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/loanapplication/pom.xml?rev=722462&r1=722461&r2=722462&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/loanapplication/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/loanapplication/pom.xml Tue Dec  2 06:10:40 2008
@@ -1,65 +1,65 @@
-<?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>1.4-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
-    </parent>
-    <artifactId>sample-loanapplication</artifactId>
-    <name>Apache Tuscany SCA Sample Loan Application Conversation</name>
-
-    <repositories>
-       <repository>
-          <id>apache.incubator</id>
-          <url>http://people.apache.org/repo/m2-incubating-repository</url>
-       </repository>
-    </repositories>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-embedded</artifactId>
-            <version>1.4-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>1.4-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.5</version>
-            <scope>test</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-sca</artifactId>
+        <version>1.4</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>sample-loanapplication</artifactId>
+    <name>Apache Tuscany SCA Sample Loan Application Conversation</name>
+
+    <repositories>
+       <repository>
+          <id>apache.incubator</id>
+          <url>http://people.apache.org/repo/m2-incubating-repository</url>
+       </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>1.4</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.4</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.5</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+
+</project>