You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2011/10/27 23:23:24 UTC

svn commit: r1190042 - in /servicemix/components/trunk: bindings/ bindings/servicemix-cxf-bc/ bindings/servicemix-file/ bindings/servicemix-ftp/ bindings/servicemix-http/ bindings/servicemix-jms/ bindings/servicemix-ldap/ bindings/servicemix-mail/ bind...

Author: gertv
Date: Thu Oct 27 21:23:23 2011
New Revision: 1190042

URL: http://svn.apache.org/viewvc?rev=1190042&view=rev
Log:
SMXCOMP-911: Add shared-library bundles to JBI component Require-Bundle header

Modified:
    servicemix/components/trunk/bindings/pom.xml
    servicemix/components/trunk/bindings/servicemix-cxf-bc/pom.xml
    servicemix/components/trunk/bindings/servicemix-file/pom.xml
    servicemix/components/trunk/bindings/servicemix-ftp/pom.xml
    servicemix/components/trunk/bindings/servicemix-http/pom.xml
    servicemix/components/trunk/bindings/servicemix-jms/pom.xml
    servicemix/components/trunk/bindings/servicemix-ldap/pom.xml
    servicemix/components/trunk/bindings/servicemix-mail/pom.xml
    servicemix/components/trunk/bindings/servicemix-rmi/pom.xml
    servicemix/components/trunk/bindings/servicemix-smpp/pom.xml
    servicemix/components/trunk/bindings/servicemix-snmp/pom.xml
    servicemix/components/trunk/bindings/servicemix-truezip/pom.xml
    servicemix/components/trunk/bindings/servicemix-vfs/pom.xml
    servicemix/components/trunk/bindings/servicemix-xmpp/pom.xml
    servicemix/components/trunk/engines/pom.xml
    servicemix/components/trunk/engines/servicemix-bean/pom.xml
    servicemix/components/trunk/engines/servicemix-camel/pom.xml
    servicemix/components/trunk/engines/servicemix-cxf-se/pom.xml
    servicemix/components/trunk/engines/servicemix-drools/pom.xml
    servicemix/components/trunk/engines/servicemix-exec/pom.xml
    servicemix/components/trunk/engines/servicemix-jsr181/pom.xml
    servicemix/components/trunk/engines/servicemix-osworkflow/pom.xml
    servicemix/components/trunk/engines/servicemix-pdf/pom.xml
    servicemix/components/trunk/engines/servicemix-quartz/pom.xml
    servicemix/components/trunk/engines/servicemix-saxon/pom.xml
    servicemix/components/trunk/engines/servicemix-script/pom.xml
    servicemix/components/trunk/engines/servicemix-scripting/pom.xml
    servicemix/components/trunk/engines/servicemix-validation/pom.xml
    servicemix/components/trunk/engines/servicemix-wsn2005/pom.xml

Modified: servicemix/components/trunk/bindings/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/pom.xml (original)
+++ servicemix/components/trunk/bindings/pom.xml Thu Oct 27 21:23:23 2011
@@ -33,6 +33,18 @@
 
     <name>Apache ServiceMix :: Components :: Binding Components</name>
 
+    <!-- configure required bundles to mimic ServiceMix 3 JBI component classloader in OSGi environment -->
+    <properties>
+        <servicemix.osgi.bundles>
+            org.springframework.core,
+            org.springframework.beans,
+            org.springframework.context,
+            servicemix-common,
+            servicemix-soap,
+            servicemix-soap2
+        </servicemix.osgi.bundles>
+    </properties>
+
     <modules>
         <module>servicemix-cxf-bc</module>
         <module>servicemix-file</module>

Modified: servicemix/components/trunk/bindings/servicemix-cxf-bc/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-cxf-bc/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-cxf-bc/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-cxf-bc/pom.xml Thu Oct 27 21:23:23 2011
@@ -72,7 +72,10 @@
             org.apache.cxf.bundle,
             org.springframework.core,
             org.springframework.beans,
-            org.springframework.context
+            org.springframework.context,
+            servicemix-common,
+            servicemix-soap,
+            servicemix-soap2
         </servicemix.osgi.bundles>
     </properties>
 

Modified: servicemix/components/trunk/bindings/servicemix-file/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-file/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-file/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-file/pom.xml Thu Oct 27 21:23:23 2011
@@ -60,11 +60,6 @@
             org.apache.servicemix.file*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.file
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-ftp/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-ftp/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-ftp/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-ftp/pom.xml Thu Oct 27 21:23:23 2011
@@ -55,11 +55,6 @@
             org.apache.servicemix.ftp*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.ftp
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-http/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-http/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-http/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-http/pom.xml Thu Oct 27 21:23:23 2011
@@ -63,11 +63,6 @@
             org.apache.servicemix.http*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.http
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-jms/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-jms/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-jms/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-jms/pom.xml Thu Oct 27 21:23:23 2011
@@ -57,11 +57,6 @@
             org.apache.servicemix.jms*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.jms
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-ldap/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-ldap/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-ldap/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-ldap/pom.xml Thu Oct 27 21:23:23 2011
@@ -57,6 +57,9 @@
             org.springframework.core,
             org.springframework.beans,
             org.springframework.context,
+            servicemix-common,
+            servicemix-soap,
+            servicemix-soap2
         </servicemix.osgi.bundles>
     </properties>
 

Modified: servicemix/components/trunk/bindings/servicemix-mail/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-mail/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-mail/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-mail/pom.xml Thu Oct 27 21:23:23 2011
@@ -51,11 +51,6 @@
             org.apache.servicemix.mail*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.mail
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-rmi/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-rmi/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-rmi/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-rmi/pom.xml Thu Oct 27 21:23:23 2011
@@ -56,11 +56,6 @@
             org.apache.servicemix.rmi*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.rmi
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context,
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-smpp/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-smpp/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-smpp/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-smpp/pom.xml Thu Oct 27 21:23:23 2011
@@ -55,11 +55,6 @@
             org.apache.servicemix.smpp*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.smpp.servicemix.apache.org.smpp
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <repositories>

Modified: servicemix/components/trunk/bindings/servicemix-snmp/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-snmp/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-snmp/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-snmp/pom.xml Thu Oct 27 21:23:23 2011
@@ -59,11 +59,6 @@
             org.apache.servicemix.snmp*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.snmp
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-truezip/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-truezip/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-truezip/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-truezip/pom.xml Thu Oct 27 21:23:23 2011
@@ -63,11 +63,6 @@
             org.apache.servicemix.truezip*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.truezip
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-vfs/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-vfs/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-vfs/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-vfs/pom.xml Thu Oct 27 21:23:23 2011
@@ -57,11 +57,6 @@
             org.apache.servicemix.vfs*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.vfs
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/bindings/servicemix-xmpp/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/bindings/servicemix-xmpp/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/bindings/servicemix-xmpp/pom.xml (original)
+++ servicemix/components/trunk/bindings/servicemix-xmpp/pom.xml Thu Oct 27 21:23:23 2011
@@ -53,11 +53,6 @@
             org.apache.servicemix.xmpp*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.xmpp
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/pom.xml (original)
+++ servicemix/components/trunk/engines/pom.xml Thu Oct 27 21:23:23 2011
@@ -33,6 +33,18 @@
 
     <name>Apache ServiceMix :: Components :: Service Engines</name>
 
+    <!-- configure required bundles to mimic ServiceMix 3 JBI component classloader in OSGi environment -->
+    <properties>
+        <servicemix.osgi.bundles>
+            org.springframework.core,
+            org.springframework.beans,
+            org.springframework.context,
+            servicemix-common,
+            servicemix-soap,
+            servicemix-soap2
+        </servicemix.osgi.bundles>
+    </properties>
+
     <modules>
         <module>servicemix-bean</module>
         <module>servicemix-camel</module>

Modified: servicemix/components/trunk/engines/servicemix-bean/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-bean/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-bean/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-bean/pom.xml Thu Oct 27 21:23:23 2011
@@ -56,11 +56,6 @@
             org.apache.servicemix.bean*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.bean
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-camel/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-camel/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-camel/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-camel/pom.xml Thu Oct 27 21:23:23 2011
@@ -59,11 +59,6 @@
             org.apache.servicemix.camel*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.camel
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-cxf-se/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-cxf-se/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-cxf-se/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-cxf-se/pom.xml Thu Oct 27 21:23:23 2011
@@ -70,6 +70,9 @@
             org.springframework.core,
             org.springframework.beans,
             org.springframework.context,
+            servicemix-common,
+            servicemix-soap,
+            servicemix-soap2
             org.apache.servicemix.bundles.xmlbeans
         </servicemix.osgi.bundles>
     </properties>

Modified: servicemix/components/trunk/engines/servicemix-drools/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-drools/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-drools/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-drools/pom.xml Thu Oct 27 21:23:23 2011
@@ -63,11 +63,6 @@
             org.apache.servicemix.drools*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.drools
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-exec/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-exec/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-exec/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-exec/pom.xml Thu Oct 27 21:23:23 2011
@@ -53,11 +53,6 @@
             org.apache.servicemix.exec*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.exec
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-jsr181/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-jsr181/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-jsr181/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-jsr181/pom.xml Thu Oct 27 21:23:23 2011
@@ -56,11 +56,6 @@
             org.apache.servicemix.jsr181*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.jsr181
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-osworkflow/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-osworkflow/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-osworkflow/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-osworkflow/pom.xml Thu Oct 27 21:23:23 2011
@@ -53,11 +53,6 @@
             org.apache.servicemix.osworkflow*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.osworkflow
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-pdf/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-pdf/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-pdf/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-pdf/pom.xml Thu Oct 27 21:23:23 2011
@@ -58,11 +58,6 @@
             org.apache.servicemix.pdf*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.pdf
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context,
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-quartz/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-quartz/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-quartz/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-quartz/pom.xml Thu Oct 27 21:23:23 2011
@@ -51,11 +51,6 @@
             org.apache.servicemix.quartz*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.quartz
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-saxon/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-saxon/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-saxon/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-saxon/pom.xml Thu Oct 27 21:23:23 2011
@@ -62,11 +62,6 @@
             org.apache.servicemix.saxon*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.saxon
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-script/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-script/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-script/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-script/pom.xml Thu Oct 27 21:23:23 2011
@@ -59,11 +59,6 @@
             org.apache.servicemix.script*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.script
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-scripting/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-scripting/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-scripting/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-scripting/pom.xml Thu Oct 27 21:23:23 2011
@@ -67,11 +67,6 @@
             org.apache.servicemix.scripting*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.scripting
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-validation/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-validation/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-validation/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-validation/pom.xml Thu Oct 27 21:23:23 2011
@@ -51,11 +51,6 @@
             org.apache.servicemix.validation*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.validation
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>

Modified: servicemix/components/trunk/engines/servicemix-wsn2005/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/trunk/engines/servicemix-wsn2005/pom.xml?rev=1190042&r1=1190041&r2=1190042&view=diff
==============================================================================
--- servicemix/components/trunk/engines/servicemix-wsn2005/pom.xml (original)
+++ servicemix/components/trunk/engines/servicemix-wsn2005/pom.xml Thu Oct 27 21:23:23 2011
@@ -55,11 +55,6 @@
             org.apache.servicemix.wsn*;version=${project.version},
             META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.wsn
         </servicemix.osgi.export>
-        <servicemix.osgi.bundles>
-            org.springframework.core,
-            org.springframework.beans,
-            org.springframework.context
-        </servicemix.osgi.bundles>
     </properties>
 
     <dependencies>