You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2008/09/10 11:40:07 UTC

svn commit: r693757 - in /servicemix/smx4/features/trunk/examples: bridge/bridge-eip-su/ bridge/bridge-http-su/ bridge/bridge-jms-su/ bridge/bridge-xslt-su/ camel/camel-sa/ camel/camel-simple-su/ cxf-wsdl-first/wsdl-first-cxfbc-su/ cxf-wsdl-first/wsdl-...

Author: ffang
Date: Wed Sep 10 02:40:06 2008
New Revision: 693757

URL: http://svn.apache.org/viewvc?rev=693757&view=rev
Log:
use separate compoents version instead of old components.version for the examples

Modified:
    servicemix/smx4/features/trunk/examples/bridge/bridge-eip-su/pom.xml
    servicemix/smx4/features/trunk/examples/bridge/bridge-http-su/pom.xml
    servicemix/smx4/features/trunk/examples/bridge/bridge-jms-su/pom.xml
    servicemix/smx4/features/trunk/examples/bridge/bridge-xslt-su/pom.xml
    servicemix/smx4/features/trunk/examples/camel/camel-sa/pom.xml
    servicemix/smx4/features/trunk/examples/camel/camel-simple-su/pom.xml
    servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfbc-su/pom.xml
    servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfse-su/pom.xml
    servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-drools-su/pom.xml
    servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-jms-su/pom.xml
    servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml
    servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml

Modified: servicemix/smx4/features/trunk/examples/bridge/bridge-eip-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge/bridge-eip-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge/bridge-eip-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge/bridge-eip-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-eip</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-eip-version}</version>
         </dependency>
     </dependencies>
 

Modified: servicemix/smx4/features/trunk/examples/bridge/bridge-http-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge/bridge-http-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge/bridge-http-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge/bridge-http-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-http</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-http-version}</version>
         </dependency>
     </dependencies>
 

Modified: servicemix/smx4/features/trunk/examples/bridge/bridge-jms-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge/bridge-jms-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge/bridge-jms-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge/bridge-jms-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-jms</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-jms-version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>

Modified: servicemix/smx4/features/trunk/examples/bridge/bridge-xslt-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge/bridge-xslt-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge/bridge-xslt-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge/bridge-xslt-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-saxon</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-saxon-version}</version>
         </dependency>
     </dependencies>
 

Modified: servicemix/smx4/features/trunk/examples/camel/camel-sa/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/camel/camel-sa/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/camel/camel-sa/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/camel/camel-sa/pom.xml Wed Sep 10 02:40:06 2008
@@ -37,7 +37,7 @@
     <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-camel</artifactId>
-      <version>${components.version}</version>      
+      <version>${servicemix-camel-version}</version>      
     </dependency> 
     <dependency>
       <groupId>org.apache.servicemix.examples.camel</groupId>

Modified: servicemix/smx4/features/trunk/examples/camel/camel-simple-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/camel/camel-simple-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/camel/camel-simple-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/camel/camel-simple-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -40,7 +40,7 @@
     <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-camel</artifactId>      
-      <version>${components.version}</version>     
+      <version>${servicemix-camel-version}</version>     
       <scope>provided</scope>
     </dependency>
   </dependencies>

Modified: servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfbc-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfbc-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfbc-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfbc-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-cxf-bc</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-cxf-bc-version}</version>
         </dependency>
     </dependencies>
 

Modified: servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfse-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfse-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfse-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/cxf-wsdl-first/wsdl-first-cxfse-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-cxf-se</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-cxf-se-version}</version>
         </dependency>
         <dependency>
             <groupId>javax.xml.ws</groupId>

Modified: servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-drools-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-drools-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-drools-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-drools-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-drools</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-drools-version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.servicemix</groupId>

Modified: servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-jms-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-jms-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-jms-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/loan-broker-bpel/loan-broker-jms-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-jms</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-jms-version}</version>
         </dependency>
     </dependencies>
 

Modified: servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-http</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-http-version}</version>
         </dependency>
     </dependencies>
 

Modified: servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml?rev=693757&r1=693756&r2=693757&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml Wed Sep 10 02:40:06 2008
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-jsr181</artifactId>
-            <version>${components.version}</version>
+            <version>${servicemix-jsr181-version}</version>
         </dependency>
     </dependencies>