Author: ips
Date: 2009-06-02 12:32:16 -0400 (Tue, 02 Jun 2009)
New Revision: 488
Modified:
trunk/jbas5/pom.xml
Log:
the jmx plugin needs to be included in the WAR's plugins dir now that the as5 plugin
depends on the jmx plugin
Modified: trunk/jbas5/pom.xml
===================================================================
--- trunk/jbas5/pom.xml 2009-06-02 16:24:08 UTC (rev 487)
+++ trunk/jbas5/pom.xml 2009-06-02 16:32:16 UTC (rev 488)
@@ -51,11 +51,19 @@
<configuration>
<outputDirectory>${warDir}/plugins</outputDirectory>
<artifactItems>
+ <!-- the AS5 plugin itself -->
<artifactItem>
<groupId>${jopr.groupId}</groupId>
<artifactId>jopr-jboss-as-5-plugin</artifactId>
<version>${jopr.version}</version>
</artifactItem>
+
+ <!-- the plugins the AS5 plugin depends on -->
+ <artifactItem>
+ <groupId>${rhq.groupId}</groupId>
+ <artifactId>rhq-jmx-plugin</artifactId>
+ <version>${rhq.version}</version>
+ </artifactItem>
</artifactItems>
</configuration>
</execution>