You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2009/01/12 16:46:53 UTC

svn commit: r733807 - /servicemix/components/engines/servicemix-drools/trunk/src/main/resources/META-INF/spring/servicemix-drools.xml

Author: gnodet
Date: Mon Jan 12 07:46:49 2009
New Revision: 733807

URL: http://svn.apache.org/viewvc?rev=733807&view=rev
Log:
SM-1763: upgrade to spring-osgi 1.2.0-m2

Modified:
    servicemix/components/engines/servicemix-drools/trunk/src/main/resources/META-INF/spring/servicemix-drools.xml

Modified: servicemix/components/engines/servicemix-drools/trunk/src/main/resources/META-INF/spring/servicemix-drools.xml
URL: http://svn.apache.org/viewvc/servicemix/components/engines/servicemix-drools/trunk/src/main/resources/META-INF/spring/servicemix-drools.xml?rev=733807&r1=733806&r2=733807&view=diff
==============================================================================
--- servicemix/components/engines/servicemix-drools/trunk/src/main/resources/META-INF/spring/servicemix-drools.xml (original)
+++ servicemix/components/engines/servicemix-drools/trunk/src/main/resources/META-INF/spring/servicemix-drools.xml Mon Jan 12 07:46:49 2009
@@ -19,12 +19,15 @@
 -->
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:ctx="http://www.springframework.org/schema/context"
        xmlns:osgi="http://www.springframework.org/schema/osgi"
        xmlns:osgix="http://www.springframework.org/schema/osgi-compendium"
        xmlns:util="http://www.springframework.org/schema/util"
        xsi:schemaLocation="
   http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans.xsd
+  http://www.springframework.org/schema/context
+  http://www.springframework.org/schema/context/spring-context.xsd
   http://www.springframework.org/schema/util
   http://www.springframework.org/schema/util/spring-util.xsd
   http://www.springframework.org/schema/osgi
@@ -63,12 +66,12 @@
         </osgi:service-properties>
     </osgi:service>
 
-    <osgix:property-placeholder persistent-id="servicemix-drools">
-        <osgix:default-properties>
-            <prop key="threadPoolCorePoolSize">8</prop>
-            <prop key="threadPoolMaximumPoolSize">32</prop>
-            <prop key="threadPoolQueueSize">256</prop>
-        </osgix:default-properties>
-    </osgix:property-placeholder>
+    <osgix:cm-properties id="cmProps" persistent-id="servicemix-drools">
+        <prop key="threadPoolCorePoolSize">8</prop>
+        <prop key="threadPoolMaximumPoolSize">32</prop>
+        <prop key="threadPoolQueueSize">256</prop>
+    </osgix:cm-properties>
 
+    <ctx:property-placeholder properties-ref="cmProps" />
+    
 </beans>