[jboss-svn-commits] JBL Code SVN: r24150 - labs/jbossesb/workspace/skeagh/examples/jms-router/esb-jms-router.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Nov 30 12:23:35 EST 2008


Author: tfennelly
Date: 2008-11-30 12:23:33 -0500 (Sun, 30 Nov 2008)
New Revision: 24150

Modified:
   labs/jbossesb/workspace/skeagh/examples/jms-router/esb-jms-router/pom.xml
Log:
https://jira.jboss.org/jira/browse/JBESB-2182

Modified: labs/jbossesb/workspace/skeagh/examples/jms-router/esb-jms-router/pom.xml
===================================================================
--- labs/jbossesb/workspace/skeagh/examples/jms-router/esb-jms-router/pom.xml	2008-11-30 16:11:55 UTC (rev 24149)
+++ labs/jbossesb/workspace/skeagh/examples/jms-router/esb-jms-router/pom.xml	2008-11-30 17:23:33 UTC (rev 24150)
@@ -14,7 +14,7 @@
 	<packaging>bundle</packaging>
 
 	<properties>
-		<felix.log.level>4</felix.log.level><!-- 4=debug -->
+		<felix.log.level>1</felix.log.level><!-- 4=debug -->
         <org.jboss.esb.properties.dir>../</org.jboss.esb.properties.dir>
 	</properties>
 
@@ -32,12 +32,17 @@
         </dependency>
 
         <dependency>
+            <groupId>commons-logging</groupId>            
+            <artifactId>commons-logging</artifactId>            
+            <version>1.1.1</version>
+        </dependency>
+
+        <dependency>
             <groupId>jboss.jbossesb</groupId>
             <artifactId>jbossesb-api</artifactId>
             <version>${jboss.esb.version}</version>
         </dependency>
 
-        <!-- OSGi bundles -->
 		<dependency>
 			<groupId>jboss.jbossesb</groupId>
 			<artifactId>jbossesb-osgi-runtime</artifactId>
@@ -58,8 +63,18 @@
             <artifactId>jbossesb-osgi-jmsbus</artifactId>
             <version>${jboss.esb.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-core</artifactId>
+            <version>5.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
+            <version>1.0.1</version>
+        </dependency>
 
-	</dependencies>
+    </dependencies>
 
     <build>
         <plugins>
@@ -91,9 +106,9 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Export-Package>org.jboss.esb.examples.jmsrouter, org.apache.activemq.jndi</Export-Package>
-                        <Import-Package>org.jboss.esb.jms, org.jboss.esb.api.routing, org.jboss.esb.api.*, *;resolution:=optional</Import-Package> <!-- TODO: Replace global import with explicit package imports? -->
-                        <Embed-Dependency>activemq-core, backport-util-concurrent, log4j, commons-logging, geronimo-j2ee-management_1.1_spec</Embed-Dependency>
+                        <Export-Package>org.jboss.esb.examples.jmsrouter, org.apache.commons.logging</Export-Package> <!-- Exporting commons-logging because activemq needs it and there doesn't seem to be a bundled version available. -->
+                        <Import-Package>org.jboss.esb.jms, org.jboss.esb.api.routing, org.jboss.esb.api.*, org.apache.activemq.jndi, *;resolution:=optional</Import-Package> <!-- TODO: Replace global import with explicit package imports? -->
+                        <Embed-Dependency>log4j, commons-logging</Embed-Dependency>
                         <Embed-Transitive>true</Embed-Transitive>
                         <JBossESB-ConfigFile>/jboss-esb.xml</JBossESB-ConfigFile>
                         <JBossESB-DeploymentName>JMS-Routing-Example-OSGi</JBossESB-DeploymentName>




More information about the jboss-svn-commits mailing list