Author: foconer
Date: Wed Dec 28 02:46:16 2005
New Revision: 359474
URL: http://svn.apache.org/viewcvs?rev=359474&view=rev
Log:
Added Pom.xml created by Henry Isidro.
Added:
incubator/activemq/trunk/activemq-gbean/pom.xml
Added: incubator/activemq/trunk/activemq-gbean/pom.xml
URL:
http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-gbean/pom.xml?rev=359474&view=auto
==============================================================================
--- incubator/activemq/trunk/activemq-gbean/pom.xml (added)
+++ incubator/activemq/trunk/activemq-gbean/pom.xml Wed Dec 28 02:46:16 2005
@@ -0,0 +1,103 @@
+<model>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>activemq</groupId>
+ <artifactId>activemq</artifactId>
+ <version>4.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>activemq-gbean</artifactId>
+ <packaging>jar</packaging>
+ <name>ActiveMQ :: GBeans</name>
+
+ <build>
+ <sourceDirectory>src/java</sourceDirectory>
+ <testSourceDirectory>src/test</testSourceDirectory>
+ </build>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>activemq</groupId>
+ <artifactId>activemq-core</artifactId>
+ <version>${version}</version>
+ </dependency>
+ <dependency>
+ <groupId>activemq</groupId>
+ <artifactId>activemq-gbean-management</artifactId>
+ <version>${version}</version>
+ </dependency>
+
+ <dependency> <!-- Used for unit tests -->
+ <groupId>activemq</groupId>
+ <artifactId>activemq-core-test</artifactId>
+ <version>${version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>geronimo</groupId>
+ <artifactId>geronimo-kernel</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>geronimo</groupId>
+ <artifactId>geronimo-system</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>geronimo</groupId>
+ <artifactId>geronimo-management</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>geronimo</groupId>
+ <artifactId>geronimo-j2ee</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>activeio</groupId>
+ <artifactId>activeio</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>mx4j</groupId>
+ <artifactId>mx4j</artifactId>
+ </dependency>
+
+
+ <dependency>
+ <groupId>geronimo-spec</groupId>
+ <artifactId>geronimo-spec-jms</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>geronimo-spec</groupId>
+ <artifactId>geronimo-spec-jta</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>geronimo-spec</groupId>
+ <artifactId>geronimo-spec-j2ee-management</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>geronimo-spec</groupId>
+ <artifactId>geronimo-spec-j2ee-jacc</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </dependency>
+
+ </dependencies>
+
+</model>