You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2008/01/04 19:56:19 UTC

svn commit: r608958 - /activemq/trunk/activemq-all/pom.xml

Author: chirino
Date: Fri Jan  4 10:56:17 2008
New Revision: 608958

URL: http://svn.apache.org/viewvc?rev=608958&view=rev
Log:
activemq-all was missing the commons-logging required dependency.

Modified:
    activemq/trunk/activemq-all/pom.xml

Modified: activemq/trunk/activemq-all/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-all/pom.xml?rev=608958&r1=608957&r2=608958&view=diff
==============================================================================
--- activemq/trunk/activemq-all/pom.xml (original)
+++ activemq/trunk/activemq-all/pom.xml Fri Jan  4 10:56:17 2008
@@ -63,13 +63,15 @@
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jms_1.1_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
     </dependency>
-    
-    
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging-api</artifactId>
+    </dependency>
+
   </dependencies>
 
   <build>
@@ -86,7 +88,7 @@
               <goal>createbundle</goal>
             </goals>
             <configuration>
-              <includes>activemq-core,activemq-console,activemq-jaas,activemq-optional,geronimo-jms_1.1_spec,geronimo-j2ee-management_1.0_spec</includes>
+              <includes>activemq-core,activemq-console,activemq-jaas,activemq-optional,geronimo-jms_1.1_spec,geronimo-j2ee-management_1.0_spec,commons-logging-api</includes>
             </configuration>
           </execution>
         </executions>