2008-04-14 13:32:33 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
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>
|
2011-03-28 14:02:03 -04:00
|
|
|
<version>5.6-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>
|
2010-02-09 13:07:38 -05:00
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
2006-10-31 12:09:40 -05:00
|
|
|
<version>${jetty-version}</version>
|
2006-04-10 06:26:17 -04:00
|
|
|
<configuration>
|
2006-08-12 04:55:57 -04:00
|
|
|
<connectors>
|
2010-02-10 05:09:22 -05:00
|
|
|
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
|
2006-08-12 04:55:57 -04:00
|
|
|
<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>
|
2010-07-06 05:55:17 -04:00
|
|
|
<artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
|
2006-04-24 06:33:37 -04:00
|
|
|
</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>
|
2010-05-06 09:09:16 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2006-04-10 06:26:17 -04:00
|
|
|
<artifactId>activemq-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- TODO this should not be needed, but transitive dependencies are not working -->
|
|
|
|
<dependency>
|
2010-05-06 09:09:16 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2006-04-10 06:26:17 -04:00
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
|
</dependency>
|
2010-05-06 08:45:43 -04:00
|
|
|
<dependency>
|
2010-05-06 09:09:16 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2010-05-06 08:45:43 -04:00
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</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>
|
2011-02-10 09:24:01 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2006-08-12 04:55:57 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- web container -->
|
|
|
|
<dependency>
|
2010-02-09 13:07:38 -05:00
|
|
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
|
|
|
<artifactId>jetty-all-server</artifactId>
|
2006-04-10 06:26:17 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</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>
|
2010-10-19 08:18:20 -04:00
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3</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
|
|
|
|
2011-03-23 05:50:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>${commons-lang-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
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>
|
2010-12-23 08:17:12 -05:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2006-08-12 04:55:57 -04:00
|
|
|
<properties>
|
|
|
|
<jetty.port>8080</jetty.port>
|
|
|
|
</properties>
|
2008-04-29 16:55:10 -04:00
|
|
|
</project>
|