2014-10-31 06:20:28 -04:00
|
|
|
<!--
|
2014-11-30 21:20:24 -05:00
|
|
|
~ 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
|
|
|
|
~
|
2014-10-31 06:20:28 -04:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2014-11-30 21:20:24 -05: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.
|
2014-10-31 06:20:28 -04:00
|
|
|
-->
|
|
|
|
|
2015-03-06 11:30:25 -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">
|
2014-10-31 06:20:28 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-05-03 10:51:24 -04:00
|
|
|
<artifactId>artemis-pom</artifactId>
|
2015-09-15 10:41:37 -04:00
|
|
|
<version>1.1.0</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
|
|
|
|
2015-05-01 04:34:12 -04:00
|
|
|
<artifactId>apache-artemis</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<packaging>pom</packaging>
|
2015-04-21 09:49:05 -04:00
|
|
|
<name>Apache ActiveMQ Artemis Distribution</name>
|
2014-10-31 06:20:28 -04:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<schemaLocation>${project.build.directory}/${project.artifactId}-${project.version}-bin/${project.artifactId}-${project.version}/schema</schemaLocation>
|
2014-11-10 11:14:12 -05:00
|
|
|
<configLocation>src/main/resources/config</configLocation>
|
2015-05-03 10:51:24 -04:00
|
|
|
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
2014-10-31 06:20:28 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2015-05-13 06:12:07 -04:00
|
|
|
<!-- ActiveMQ Artemis artifacts -->
|
2015-04-15 19:55:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-boot</artifactId>
|
2015-04-15 19:55:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-11-10 11:14:12 -05:00
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-server</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-dto</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-05-03 11:40:36 -04:00
|
|
|
<artifactId>artemis-cli</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-jms-server</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-jms-client</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-ra</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-spring-integration</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-vertx-integration</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq.rest</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-rest</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-aerogear-integration</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-11-28 06:46:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-web</artifactId>
|
2014-11-28 06:46:12 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-core-client</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-amqp-protocol</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-stomp-protocol</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-openwire-protocol</artifactId>
|
2014-11-10 11:14:12 -05:00
|
|
|
<version>${project.version}</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
2015-05-11 09:26:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-hornetq-protocol</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2015-07-06 12:01:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-mqtt-protocol</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-12-19 17:59:24 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-native</artifactId>
|
2014-12-19 17:59:24 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-website</artifactId>
|
2014-12-19 17:59:24 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-11-10 11:14:12 -05:00
|
|
|
<!-- dependencies -->
|
2014-12-19 17:59:24 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logmanager</groupId>
|
|
|
|
<artifactId>jboss-logmanager</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.qpid</groupId>
|
|
|
|
<artifactId>proton-jms</artifactId>
|
|
|
|
</dependency>
|
2014-11-10 11:14:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.airlift</groupId>
|
|
|
|
<artifactId>airline</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-client</artifactId>
|
|
|
|
</dependency>
|
2014-11-28 06:46:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
2015-01-27 11:24:50 -05:00
|
|
|
<artifactId>jetty-all</artifactId>
|
2014-11-28 06:46:12 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-06-04 09:33:41 -04:00
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
<artifactId>tomcat-servlet-api</artifactId>
|
2014-11-28 06:46:12 -05:00
|
|
|
</dependency>
|
2014-12-02 04:54:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jolokia</groupId>
|
|
|
|
<artifactId>jolokia-war</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
2015-02-18 07:13:08 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</dependency>
|
2015-03-09 11:13:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-website</artifactId>
|
2015-03-09 11:13:20 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>javadoc</classifier>
|
|
|
|
</dependency>
|
2015-07-06 12:01:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-mqtt</artifactId>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
2015-04-29 13:20:31 -04:00
|
|
|
<directory>../artemis/src/main/resources</directory>
|
2014-10-31 06:20:28 -04:00
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2015-05-13 05:24:08 -04:00
|
|
|
<version>${maven.assembly.plugin.version}</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-03-05 09:44:02 -05:00
|
|
|
<id>source</id>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/source-assembly.xml</descriptor>
|
|
|
|
<tarLongFileMode>gnu</tarLongFileMode>
|
|
|
|
</configuration>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>bin</id>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
|
|
|
<tarLongFileMode>gnu</tarLongFileMode>
|
|
|
|
</configuration>
|
2014-10-31 06:20:28 -04:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|