add m2 poms for systest and the web modules.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@358481 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2005-12-22 04:07:49 +00:00
parent e2e1cb529c
commit ab342f9780
3 changed files with 114 additions and 1 deletions

100
activemq-systest/pom.xml Executable file
View File

@ -0,0 +1,100 @@
<model>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-project</artifactId>
<version>4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>activemq-systest</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ :: System Test</name>
<description>System Testing Framework for ActiveMQ</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-core</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>backport-util-concurrent</groupId>
<artifactId>backport-util-concurrent</artifactId>
</dependency>
<dependency>
<groupId>activeio</groupId>
<artifactId>activeio</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>geronimo-spec</groupId>
<artifactId>geronimo-spec-jms</artifactId>
</dependency>
<dependency>
<groupId>geronimo-spec</groupId>
<artifactId>geronimo-spec-j2ee-connector</artifactId>
</dependency>
<dependency>
<groupId>xbean</groupId>
<artifactId>xbean-spring</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-full</artifactId>
</dependency>
<dependency>
<groupId>jetty</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>jetty</groupId>
<artifactId>jetty</artifactId>
</dependency>
<dependency>
<groupId>activemq</groupId>
<artifactId>jmdns</artifactId>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
</dependency>
<dependency>
<groupId>annogen</groupId>
<artifactId>annogen</artifactId>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
</dependency>
</dependencies>
</model>

View File

@ -11,7 +11,7 @@
<artifactId>activemq-web</artifactId>
<packaging>jar</packaging>
<name>ActiveMQ :: Web</name>
<description>Web Connector for REST API and Streamlets support</description>description>
<description>Web Connector for REST API and Streamlets support</description>
<dependencies>

13
pom.xml
View File

@ -94,6 +94,7 @@
<module>activemq-jaas</module>
<module>activemq-optional</module>
<module>activemq-web</module>
<module>activemq-systest</module>
<module>activeio</module>
<module>activecluster</module>
@ -444,6 +445,18 @@
<version>2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>annogen</groupId>
<artifactId>annogen</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.2</version>
</dependency>
</dependencies>
</dependencyManagement>