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>
|
2024-04-29 11:52:46 -04:00
|
|
|
<version>6.2.0-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>
|
2020-08-31 05:39:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</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 -->
|
2023-04-13 10:21:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2015-08-19 12:55:14 -04:00
|
|
|
<scope>provided</scope>
|
2023-04-13 10:21:41 -04:00
|
|
|
</dependency>
|
2005-12-21 22:53:15 -05:00
|
|
|
<dependency>
|
2022-03-01 09:33:50 -05:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
2015-08-19 12:55:14 -04:00
|
|
|
<scope>provided</scope>
|
2005-12-21 22:53:15 -05:00
|
|
|
</dependency>
|
2022-03-31 15:54:59 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
</dependency>
|
2005-12-21 22:53:15 -05:00
|
|
|
<dependency>
|
2015-08-19 12:55:14 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2023-04-13 10:21:41 -04:00
|
|
|
<artifactId>websocket-jetty-server</artifactId>
|
2010-02-09 13:07:38 -05:00
|
|
|
</dependency>
|
2012-04-18 18:09:44 -04:00
|
|
|
|
2006-04-10 06:26:17 -04:00
|
|
|
<!-- Rome RSS Reader -->
|
|
|
|
<dependency>
|
2019-05-24 06:47:09 -04:00
|
|
|
<groupId>com.rometools</groupId>
|
2006-04-10 06:26:17 -04:00
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- XML -->
|
2006-03-29 21:35:39 -05:00
|
|
|
<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>
|
2015-04-16 12:53:18 -04:00
|
|
|
|
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>
|
2021-05-27 05:30:59 -04:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
2023-02-19 01:24:24 -05:00
|
|
|
<artifactId>log4j-slf4j2-impl</artifactId>
|
2013-01-28 17:44:25 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-04-16 12:53:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2005-12-21 22:53:15 -05:00
|
|
|
</dependencies>
|
2015-07-09 09:10:38 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>activemq.tests-sanity</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>activemq.tests</name>
|
|
|
|
<value>smoke</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/RemoteJMXBrokerFailoverTest.*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-07-16 14:23:24 -04:00
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>activemq.tests-autoTransport</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>activemq.tests</name>
|
|
|
|
<value>autoTransport</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-07-09 09:10:38 -04:00
|
|
|
</profile>
|
|
|
|
</profiles>
|
2019-05-24 06:47:09 -04:00
|
|
|
</project>
|