activemq-all was missing the commons-logging required dependency.

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@608958 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2008-01-04 18:56:17 +00:00
parent 0640cb703a
commit 1a2e583595
1 changed files with 6 additions and 4 deletions

View File

@ -63,12 +63,14 @@
<groupId>org.apache.geronimo.specs</groupId> <groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId> <artifactId>geronimo-jms_1.1_spec</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.geronimo.specs</groupId> <groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-j2ee-management_1.0_spec</artifactId> <artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
</dependency> </dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
</dependency>
</dependencies> </dependencies>
@ -86,7 +88,7 @@
<goal>createbundle</goal> <goal>createbundle</goal>
</goals> </goals>
<configuration> <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> </configuration>
</execution> </execution>
</executions> </executions>