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
|
2012-04-18 18:09:44 -04:00
|
|
|
|
2008-04-14 13:32:33 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2012-04-18 18:09:44 -04:00
|
|
|
|
2008-04-14 13:32:33 -04:00
|
|
|
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.
|
|
|
|
-->
|
2013-02-06 10:43:41 -05: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">
|
2012-04-18 18:09:44 -04:00
|
|
|
|
2005-12-21 22:53:15 -05: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>
|
2013-10-14 18:38:35 -04:00
|
|
|
<version>5.10-SNAPSHOT</version>
|
2005-12-21 22:53:15 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-web</artifactId>
|
|
|
|
<name>ActiveMQ :: Web</name>
|
2005-12-21 23:07:49 -05:00
|
|
|
<description>Web Connector for REST API and Streamlets support</description>
|
2012-04-18 18:09:44 -04:00
|
|
|
|
2010-07-01 10:54:08 -04:00
|
|
|
<properties>
|
|
|
|
<activemq.osgi.import.pkg>
|
|
|
|
org.apache.activemq*;resolution:=optional,
|
2010-07-05 12:04:29 -04:00
|
|
|
org.eclipse.jetty*;resolution:=optional,
|
2010-07-01 10:54:08 -04:00
|
|
|
org.springframework*;resolution:=optional,
|
2010-07-05 12:04:29 -04:00
|
|
|
com.thoughtworks.xstream*;resolution:=optional,
|
|
|
|
com.sun*;resolution:=optional,
|
2010-07-01 10:54:08 -04:00
|
|
|
*
|
|
|
|
</activemq.osgi.import.pkg>
|
|
|
|
<activemq.osgi.export>
|
|
|
|
org.apache.activemq.web*;version=${project.version};-noimport:=true,
|
|
|
|
</activemq.osgi.export>
|
|
|
|
</properties>
|
2012-04-18 18:09:44 -04:00
|
|
|
|
2005-12-21 22:53:15 -05:00
|
|
|
<dependencies>
|
2006-03-29 20:12:00 -05:00
|
|
|
<!-- activemq -->
|
2013-09-20 11:59:05 -04:00
|
|
|
|
2005-12-21 22:53:15 -05:00
|
|
|
<dependency>
|
2013-09-20 11:59:05 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-all</artifactId>
|
2008-10-09 09:17:17 -04:00
|
|
|
</dependency>
|
2012-04-18 18:09:44 -04:00
|
|
|
<dependency>
|
2013-01-09 16:50:59 -05:00
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-pool</artifactId>
|
2012-04-18 18:09:44 -04:00
|
|
|
</dependency>
|
2006-03-29 20:12:00 -05:00
|
|
|
<dependency>
|
2010-05-06 09:09:16 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2013-01-28 18:09:54 -05:00
|
|
|
<artifactId>activemq-unit-tests</artifactId>
|
2006-04-10 06:26:17 -04:00
|
|
|
<scope>test</scope>
|
2006-05-04 16:37:24 -04:00
|
|
|
<type>test-jar</type>
|
2006-03-29 20:12:00 -05:00
|
|
|
</dependency>
|
2013-10-17 09:27:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>activemq-broker</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
2012-04-18 18:09:44 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- web container -->
|
2005-12-21 22:53:15 -05:00
|
|
|
<dependency>
|
2008-04-08 10:57:40 -04:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-servlet_2.5_spec</artifactId>
|
2006-04-19 10:37:26 -04:00
|
|
|
<scope>provided</scope>
|
2005-12-21 22:53:15 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2010-02-09 13:07:38 -05:00
|
|
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
|
|
|
<artifactId>jetty-all-server</artifactId>
|
|
|
|
<scope>test</scope>
|
2005-12-21 22:53:15 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-01-09 16:50:59 -05:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-websocket</artifactId>
|
|
|
|
<version>${jetty-version}</version>
|
2010-02-09 13:07:38 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-continuation</artifactId>
|
|
|
|
<version>${jetty-version}</version>
|
2005-12-21 22:53:15 -05:00
|
|
|
</dependency>
|
2012-04-18 18:09:44 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- Rome RSS Reader -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>rome</groupId>
|
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- XML -->
|
2006-03-29 21:35:39 -05:00
|
|
|
<dependency>
|
2006-04-10 06:26:17 -04:00
|
|
|
<groupId>jdom</groupId>
|
|
|
|
<artifactId>jdom</artifactId>
|
2006-03-29 21:35:39 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xbean</groupId>
|
|
|
|
<artifactId>xbean-spring</artifactId>
|
|
|
|
</dependency>
|
2007-09-10 16:44:44 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<optional>false</optional>
|
|
|
|
</dependency>
|
2007-08-02 09:03:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
2008-03-12 10:00:18 -04:00
|
|
|
<optional>false</optional>
|
2007-08-02 09:03:33 -04:00
|
|
|
</dependency>
|
2006-03-29 21:35:39 -05:00
|
|
|
<dependency>
|
2010-10-19 08:18:20 -04:00
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3</artifactId>
|
2006-04-10 06:26:17 -04:00
|
|
|
</dependency>
|
2006-03-29 21:35:39 -05:00
|
|
|
<dependency>
|
2008-01-16 14:29:10 -05:00
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
2006-03-29 21:35:39 -05:00
|
|
|
<artifactId>xstream</artifactId>
|
2006-04-10 06:26:17 -04:00
|
|
|
</dependency>
|
2006-03-09 02:11:37 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-01-28 17:44:25 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-12-21 22:53:15 -05:00
|
|
|
</dependencies>
|
2008-04-11 15:00:05 -04:00
|
|
|
</project>
|