You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by dk...@apache.org on 2013/01/15 17:23:26 UTC

svn commit: r1433492 - /aries/trunk/blueprint/blueprint-cm/src/main/resources/OSGI-INF/blueprint/blueprint-cm.xml

Author: dkulp
Date: Tue Jan 15 16:23:26 2013
New Revision: 1433492

URL: http://svn.apache.org/viewvc?rev=1433492&view=rev
Log:
Make sure bluepring-cm's MANIFEST has the proper entries with namespaces for the Export-Service line

Modified:
    aries/trunk/blueprint/blueprint-cm/src/main/resources/OSGI-INF/blueprint/blueprint-cm.xml

Modified: aries/trunk/blueprint/blueprint-cm/src/main/resources/OSGI-INF/blueprint/blueprint-cm.xml
URL: http://svn.apache.org/viewvc/aries/trunk/blueprint/blueprint-cm/src/main/resources/OSGI-INF/blueprint/blueprint-cm.xml?rev=1433492&r1=1433491&r2=1433492&view=diff
==============================================================================
--- aries/trunk/blueprint/blueprint-cm/src/main/resources/OSGI-INF/blueprint/blueprint-cm.xml (original)
+++ aries/trunk/blueprint/blueprint-cm/src/main/resources/OSGI-INF/blueprint/blueprint-cm.xml Tue Jan 15 16:23:26 2013
@@ -19,17 +19,22 @@
 -->
 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" default-activation="lazy">
 
-    <service interface="org.apache.aries.blueprint.NamespaceHandler">
+    <bean id="CmNamespaceHandler" class="org.apache.aries.blueprint.compendium.cm.CmNamespaceHandler"/>
+
+    <service ref="CmNamespaceHandler" interface="org.apache.aries.blueprint.NamespaceHandler">
         <service-properties>
-            <entry key="osgi.service.blueprint.namespace">
-                <array>
-                    <value>http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0</value>
-                    <value>http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0</value>
-                    <value>http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.2.0</value>
-                </array>
-            </entry>
+            <entry key="osgi.service.blueprint.namespace" value="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0"/>
         </service-properties>
-        <bean class="org.apache.aries.blueprint.compendium.cm.CmNamespaceHandler"/>
     </service>
-
+    <service ref="CmNamespaceHandler" interface="org.apache.aries.blueprint.NamespaceHandler">
+        <service-properties>
+            <entry key="osgi.service.blueprint.namespace" value="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"/>
+        </service-properties>
+    </service>
+    <service ref="CmNamespaceHandler" interface="org.apache.aries.blueprint.NamespaceHandler">
+        <service-properties>
+            <entry key="osgi.service.blueprint.namespace" value="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.2.0"/>
+        </service-properties>
+    </service>
+    
 </blueprint>