Author: gertv
Date: Mon May 19 03:28:47 2008
New Revision: 657781

URL: http://svn.apache.org/viewvc?rev=657781&view=rev
Log:
SM-1360: Add XSD location to the xbean.xml generated by the archetypes

Modified:
    servicemix/smx3/trunk/archetypes/pom.xml
    
servicemix/smx3/trunk/archetypes/servicemix-bean-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-cxf-bc-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-drools-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-eip-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-file-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-file-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-ftp-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-ftp-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-http-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-http-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-jms-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-jms-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-jsr181-annotated-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-lwcontainer-service-unit/src/main/resources/archetype-resources/src/main/resources/servicemix.xml
    
servicemix/smx3/trunk/archetypes/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-osworkflow-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    servicemix/smx3/trunk/archetypes/servicemix-project-root/   (props changed)
    
servicemix/smx3/trunk/archetypes/servicemix-saxon-xquery-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    
servicemix/smx3/trunk/archetypes/servicemix-saxon-xslt-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
    servicemix/smx3/trunk/deployables/bindingcomponents/servicemix-mail/   
(props changed)
    servicemix/smx3/trunk/deployables/serviceengines/servicemix-osworkflow/   
(props changed)

Modified: servicemix/smx3/trunk/archetypes/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/pom.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- servicemix/smx3/trunk/archetypes/pom.xml (original)
+++ servicemix/smx3/trunk/archetypes/pom.xml Mon May 19 03:28:47 2008
@@ -94,6 +94,7 @@
                                                
<xbean-version>${xbean-version}</xbean-version>
                                                
<camel-version>${camel-version}</camel-version>
                                                
<xfire-version>${xfire-version}</xfire-version>
+                                                
<activemq-version>${activemq-version}</activemq-version>
                                                <repositories><![CDATA[  
   <repositories>
     <repository>

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-bean-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-bean-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-bean-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-bean-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -17,8 +17,12 @@
     limitations under the License.
 
 -->
-<beans xmlns:bean="http://servicemix.apache.org/bean/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+<beans xmlns="http://www.springframework.org/schema/beans";
+       xmlns:bean="http://servicemix.apache.org/bean/1.0";
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/bean/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <bean:endpoint service="replaceMe:service" endpoint="endpoint" 
bean="#myBean"/>
 

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-cxf-bc-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-cxf-bc-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-cxf-bc-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-cxf-bc-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -17,7 +17,11 @@
     limitations under the License.
 
 -->
-<beans xmlns:cxfbc="http://servicemix.apache.org/cxfbc/1.0";>
+<beans xmlns="http://www.springframework.org/schema/beans";
+       xmlns:cxfbc="http://servicemix.apache.org/cxfbc/1.0";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/cxfbc/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <cxfbc:consumer wsdl="classpath:service.wsdl"
                       targetEndpoint="replaceMe:withYourEndpoint"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -17,7 +17,11 @@
     limitations under the License.
 
 -->
-<beans xmlns:cxfse="http://servicemix.apache.org/cxfse/1.0";>
+<beans xmlns:cxfse="http://servicemix.apache.org/cxfse/1.0";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/cxfse/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
     <cxfse:endpoint>
         <cxfse:pojo>

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-drools-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-drools-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-drools-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-drools-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -19,7 +19,11 @@
 -->
 <beans xmlns:drools="http://servicemix.apache.org/drools/1.0";
        xmlns:util="http://www.springframework.org/schema/util";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/drools/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <drools:endpoint service="replaceMe:myRouter"
                    endpoint="endpoint"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-eip-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-eip-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-eip-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-eip-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:eip="http://servicemix.apache.org/eip/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/eip/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <eip:static-recipient-list service="replaceMe:entryPoint" 
endpoint="endpoint">
     <eip:recipients>

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-file-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-file-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-file-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-file-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:file="http://servicemix.apache.org/file/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/file/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <file:poller service="replaceMe:withYourService"
                endpoint="endpoint"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-file-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-file-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-file-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-file-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:file="http://servicemix.apache.org/file/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/file/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
  <file:sender service="replaceMe:withYourService"
               endpoint="endpoint"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-ftp-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-ftp-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-ftp-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-ftp-poller-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:ftp="http://servicemix.apache.org/ftp/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/ftp/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <ftp:poller service="replaceMe:withYourService"
               endpoint="endpoint"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-ftp-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-ftp-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-ftp-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-ftp-sender-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:ftp="http://servicemix.apache.org/ftp/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/ftp/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <ftp:sender service="replaceMe:withYourService"
               endpoint="endpoint"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-http-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-http-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-http-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-http-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:http="http://servicemix.apache.org/http/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/http/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <http:endpoint service="replaceMe:withYourService"
                  endpoint="soap"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-http-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-http-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-http-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-http-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:http="http://servicemix.apache.org/http/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/http/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <http:endpoint service="replaceMe:withYourService"
                  endpoint="soap"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-jms-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-jms-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-jms-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-jms-consumer-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -19,7 +19,12 @@
 -->
 <beans xmlns:jms="http://servicemix.apache.org/jms/1.0";
        xmlns:test="http://test";
-       xmlns:amq="http://activemq.org/config/1.0";>
+       xmlns:amq="http://activemq.org/config/1.0";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/jms/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://activemq.org/config/1.0 
http://activemq.apache.org/schema/core/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
     <!-- START SNIPPET: consumer -->
     <jms:endpoint service="test:MyConsumerService"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-jms-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-jms-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-jms-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-jms-provider-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -19,7 +19,12 @@
 -->
 <beans xmlns:jms="http://servicemix.apache.org/jms/1.0";
        xmlns:test="http://test";
-       xmlns:amq="http://activemq.org/config/1.0";>
+       xmlns:amq="http://activemq.org/config/1.0";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/jms/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://activemq.org/config/1.0 
http://activemq.apache.org/schema/core/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
     <!-- START SNIPPET: provider -->
     <jms:endpoint service="test:MyProviderService"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-jsr181-annotated-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-jsr181-annotated-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-jsr181-annotated-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-jsr181-annotated-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -17,7 +17,11 @@
     limitations under the License.
 
 -->
-<beans xmlns:jsr181="http://servicemix.apache.org/jsr181/1.0";>
+<beans xmlns:jsr181="http://servicemix.apache.org/jsr181/1.0";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/jsr181/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
     <jsr181:endpoint pojoClass="${packageName}.ExampleService" />
 

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -17,7 +17,11 @@
     limitations under the License.
 
 -->
-<beans xmlns:jsr181="http://servicemix.apache.org/jsr181/1.0";>
+<beans xmlns:jsr181="http://servicemix.apache.org/jsr181/1.0";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/jsr181/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
     <jsr181:endpoint pojoClass="put.your.implementation.here"
                      wsdlResource="classpath:service.wsdl" />

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-lwcontainer-service-unit/src/main/resources/archetype-resources/src/main/resources/servicemix.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-lwcontainer-service-unit/src/main/resources/archetype-resources/src/main/resources/servicemix.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-lwcontainer-service-unit/src/main/resources/archetype-resources/src/main/resources/servicemix.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-lwcontainer-service-unit/src/main/resources/archetype-resources/src/main/resources/servicemix.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:sm="http://servicemix.apache.org/config/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/config/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <sm:serviceunit id="jbi">
     <sm:activationSpecs>

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -19,7 +19,11 @@
 -->
 
 <beans xmlns:mail="http://servicemix.apache.org/mail/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/mail/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
        
     <mail:poller service="replaceMe:mailService" 
                  endpoint="pollerEndpoint" 

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-osworkflow-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-osworkflow-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-osworkflow-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-osworkflow-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -19,7 +19,11 @@
 -->
 
 <beans xmlns:osworkflow="http://servicemix.apache.org/osworkflow/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/orworkflow/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <osworkflow:endpoint service="replaceMe:myworkflow" 
                        endpoint="myWorkflowEndpoint"

Propchange: servicemix/smx3/trunk/archetypes/servicemix-project-root/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon May 19 03:28:47 2008
@@ -1,3 +1,4 @@
 target
 .classpath
 .project
+.settings

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-saxon-xquery-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-saxon-xquery-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-saxon-xquery-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-saxon-xquery-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:saxon="http://servicemix.apache.org/saxon/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/saxon/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <!-- START SNIPPET: xquery --> 
   <saxon:xquery service="replaceMe:xquery" endpoint="endpoint"

Modified: 
servicemix/smx3/trunk/archetypes/servicemix-saxon-xslt-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-saxon-xslt-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=657781&r1=657780&r2=657781&view=diff
==============================================================================
--- 
servicemix/smx3/trunk/archetypes/servicemix-saxon-xslt-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 (original)
+++ 
servicemix/smx3/trunk/archetypes/servicemix-saxon-xslt-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
 Mon May 19 03:28:47 2008
@@ -18,7 +18,11 @@
 
 -->
 <beans xmlns:saxon="http://servicemix.apache.org/saxon/1.0";
-       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";>
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe";
+       xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://servicemix.apache.org/saxon/1.0 
http://servicemix.apache.org/schema/[EMAIL PROTECTED]
+       http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd";>
 
   <!-- START SNIPPET: xslt --> 
   <saxon:xslt service="replaceMe:xslt" endpoint="endpoint"

Propchange: servicemix/smx3/trunk/deployables/bindingcomponents/servicemix-mail/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon May 19 03:28:47 2008
@@ -1 +1,4 @@
 target
+.classpath
+.settings
+.project

Propchange: 
servicemix/smx3/trunk/deployables/serviceengines/servicemix-osworkflow/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon May 19 03:28:47 2008
@@ -1 +1,5 @@
 target
+.settings
+.classpath
+.project
+


Reply via email to