2014-10-31 10:20:28 +00:00
|
|
|
<!--
|
2014-12-01 10:20:24 +08: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 10:20:28 +00:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2014-12-01 10:20:24 +08: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 10:20:28 +00:00
|
|
|
-->
|
|
|
|
|
2015-03-06 16:30:25 +00: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 10:20:28 +00: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>
|
2016-09-06 12:17:31 -04:00
|
|
|
<version>1.5.0-SNAPSHOT</version>
|
2014-10-31 10:20:28 +00:00
|
|
|
</parent>
|
|
|
|
|
2015-05-01 09:34:12 +01:00
|
|
|
<artifactId>apache-artemis</artifactId>
|
2014-10-31 10:20:28 +00:00
|
|
|
<packaging>pom</packaging>
|
2015-04-21 14:49:05 +01:00
|
|
|
<name>Apache ActiveMQ Artemis Distribution</name>
|
2014-10-31 10:20:28 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<schemaLocation>${project.build.directory}/${project.artifactId}-${project.version}-bin/${project.artifactId}-${project.version}/schema</schemaLocation>
|
2014-11-10 16:14:12 +00:00
|
|
|
<configLocation>src/main/resources/config</configLocation>
|
2015-05-03 10:51:24 -04:00
|
|
|
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
2014-10-31 10:20:28 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2015-05-13 11:12:07 +01: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00: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 16:14:12 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-11-28 11:46:12 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-web</artifactId>
|
2014-11-28 11:46:12 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-10-31 10:20:28 +00: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 10:20:28 +00: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 10:20:28 +00: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 10:20:28 +00: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 16:14:12 +00:00
|
|
|
<version>${project.version}</version>
|
2014-10-31 10:20:28 +00:00
|
|
|
</dependency>
|
2015-05-11 14:26:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-hornetq-protocol</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2015-07-06 17:01:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-mqtt-protocol</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-12-19 16:59:24 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-native</artifactId>
|
2014-12-19 16:59:24 -06:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-01-06 14:16:44 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-jdbc-store</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-12-19 16:59:24 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-website</artifactId>
|
2014-12-19 16:59:24 -06:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-11-10 16:14:12 +00:00
|
|
|
<!-- dependencies -->
|
2014-12-19 16:59:24 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logmanager</groupId>
|
|
|
|
<artifactId>jboss-logmanager</artifactId>
|
|
|
|
</dependency>
|
2014-11-10 16:14:12 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.airlift</groupId>
|
|
|
|
<artifactId>airline</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-client</artifactId>
|
|
|
|
</dependency>
|
2014-11-28 11:46:12 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
2015-01-27 16:24:50 +00:00
|
|
|
<artifactId>jetty-all</artifactId>
|
2016-06-30 13:04:04 -05:00
|
|
|
<type>jar</type>
|
|
|
|
<classifier>uber</classifier>
|
2014-11-28 11:46:12 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-06-04 09:33:41 -04:00
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
<artifactId>tomcat-servlet-api</artifactId>
|
2014-11-28 11:46:12 +00:00
|
|
|
</dependency>
|
2014-12-02 09:54:10 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jolokia</groupId>
|
|
|
|
<artifactId>jolokia-war</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
2015-02-18 12:13:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</dependency>
|
2015-03-09 15:13:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-website</artifactId>
|
2015-03-09 15:13:20 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>javadoc</classifier>
|
|
|
|
</dependency>
|
2015-07-06 17:01:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-mqtt</artifactId>
|
|
|
|
</dependency>
|
2016-07-17 19:05:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-json_1.0_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.johnzon</groupId>
|
|
|
|
<artifactId>johnzon-core</artifactId>
|
|
|
|
</dependency>
|
2014-10-31 10:20:28 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
2015-04-29 12:20:31 -05:00
|
|
|
<directory>../artemis/src/main/resources</directory>
|
2014-10-31 10:20:28 +00: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 10:24:08 +01:00
|
|
|
<version>${maven.assembly.plugin.version}</version>
|
2014-10-31 10:20:28 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-03-05 14:44:02 +00: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 10:20:28 +00:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|