You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2011/07/15 14:14:07 UTC

svn commit: r1147114 - /servicemix/smx4/bundles/trunk/qpid-0.8.0/pom.xml

Author: jbonofre
Date: Fri Jul 15 12:14:07 2011
New Revision: 1147114

URL: http://svn.apache.org/viewvc?rev=1147114&view=rev
Log:
[SMX4-875] Include qpid-broker in the ServiceMix qpid bundle.

Modified:
    servicemix/smx4/bundles/trunk/qpid-0.8.0/pom.xml

Modified: servicemix/smx4/bundles/trunk/qpid-0.8.0/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/qpid-0.8.0/pom.xml?rev=1147114&r1=1147113&r2=1147114&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/qpid-0.8.0/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/qpid-0.8.0/pom.xml Fri Jul 15 12:14:07 2011
@@ -33,7 +33,7 @@
     <packaging>bundle</packaging>
     <version>0.8.0_3-SNAPSHOT</version>
     <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>This OSGi bundle wraps qpid-common, and qpid-client ${pkgVersion} jar files.</description>
+    <description>This OSGi bundle wraps qpid-common, qpid-client, and qpid-broker ${pkgVersion} jar files.</description>
 
     <properties>
         <pkgGroupId>org.apache.qpid</pkgGroupId>
@@ -43,8 +43,11 @@
             org.apache.qpid
         </servicemix.osgi.export.pkg>
         <servicemix.osgi.import.pkg>
-            !org.apache.qpid*,
+            org.apache.qpid.management*;resolution:=optional,
             edu.emory.mathcs.backport.java.util.concurrent*;resolution:=optional,
+            com.sun.security.auth;resolution:=optional,
+            org.apache.felix.framework*;resolution:=optional,
+            org.apache.felix.main*;resolution:=optional,
             javax.jms*;version="[1.1,2)",
             javax.naming*,
             javax.net*,
@@ -77,6 +80,12 @@
             <version>${pkgVersion}</version>
             <optional>true</optional>
         </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}-broker</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
     </dependencies>
 
     <build>
@@ -95,6 +104,7 @@
                                 <includes>
                                     <include>${pkgGroupId}:${pkgArtifactId}-common</include>
                                     <include>${pkgGroupId}:${pkgArtifactId}-client</include>
+                                    <include>${pkgGroupId}:${pkgArtifactId}-broker</include>
                                 </includes>
                             </artifactSet>
                             <filters>
@@ -110,6 +120,12 @@
                                         <exclude>**</exclude>
                                     </excludes>
                                 </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}-broker</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
                             </filters>
                             <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
                             <createDependencyReducedPom>false</createDependencyReducedPom>