2008-04-11 15:00:05 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2006-08-12 04:55:57 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2006-07-26 02:07:11 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2006-04-15 19:33:05 -04:00
|
|
|
<artifactId>activemq-parent</artifactId>
|
2008-04-11 15:00:54 -04:00
|
|
|
<version>5.2-SNAPSHOT</version>
|
2006-04-10 06:26:17 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-web-demo</artifactId>
|
|
|
|
<packaging>war</packaging>
|
2006-04-17 16:38:21 -04:00
|
|
|
<name>ActiveMQ :: Web Demo</name>
|
2006-04-10 06:26:17 -04:00
|
|
|
<description>Web Demo for REST API and Streamlets support</description>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
2006-10-31 12:09:40 -05:00
|
|
|
<artifactId>maven-jetty-plugin</artifactId>
|
|
|
|
<version>${jetty-version}</version>
|
2006-04-10 06:26:17 -04:00
|
|
|
<configuration>
|
2006-08-12 04:55:57 -04:00
|
|
|
<connectors>
|
|
|
|
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
|
|
|
|
<port>${jetty.port}</port>
|
|
|
|
<maxIdleTime>60000</maxIdleTime>
|
|
|
|
</connector>
|
|
|
|
</connectors>
|
2006-04-10 06:26:17 -04:00
|
|
|
<scanIntervalSeconds>10</scanIntervalSeconds>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2006-08-12 04:55:57 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<dependencies>
|
2006-08-12 04:55:57 -04:00
|
|
|
|
2006-04-24 06:33:37 -04:00
|
|
|
<!-- j2ee jars -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jms_1.1_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
2008-04-08 10:57:40 -04:00
|
|
|
<artifactId>geronimo-jacc_1.1_spec</artifactId>
|
2006-04-24 06:33:37 -04:00
|
|
|
</dependency>
|
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- activemq -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>${pom.groupId}</groupId>
|
|
|
|
<artifactId>activemq-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- TODO this should not be needed, but transitive dependencies are not working -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>${pom.groupId}</groupId>
|
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
|
</dependency>
|
2006-08-12 04:55:57 -04:00
|
|
|
<dependency>
|
2006-04-24 06:33:37 -04:00
|
|
|
<groupId>${pom.groupId}</groupId>
|
|
|
|
<artifactId>activeio-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2006-07-26 02:07:11 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2006-04-24 06:33:37 -04:00
|
|
|
<artifactId>activemq-jaas</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2006-08-12 04:55:57 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- web container -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2006-08-12 04:55:57 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- For Spring servlet -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
</dependency>
|
2006-08-12 04:55:57 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- for custom XML parsing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xbean</groupId>
|
|
|
|
<artifactId>xbean-spring</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlpull</groupId>
|
|
|
|
<artifactId>xmlpull</artifactId>
|
2006-08-12 04:55:57 -04:00
|
|
|
</dependency>
|
2006-04-10 06:26:17 -04:00
|
|
|
|
|
|
|
<dependency>
|
2008-01-16 14:29:10 -05:00
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
2006-04-10 06:26:17 -04:00
|
|
|
<artifactId>xstream</artifactId>
|
2006-08-12 04:55:57 -04:00
|
|
|
</dependency>
|
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- used for testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2006-08-12 04:55:57 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- Derby SQL DB used for testing JDBC message store -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2006-08-12 04:55:57 -04:00
|
|
|
<properties>
|
|
|
|
<jetty.port>8080</jetty.port>
|
|
|
|
</properties>
|
2008-04-11 15:00:05 -04:00
|
|
|
</project>
|